21 lines
162 B
C++
21 lines
162 B
C++
#pragma once
|
|
#include <SDL2/SDL.h>
|
|
|
|
#ifndef GAME_H
|
|
#define GAME_H
|
|
|
|
class Game
|
|
{
|
|
private:
|
|
|
|
|
|
public:
|
|
// Constructor
|
|
Game();
|
|
|
|
// Destructor
|
|
~Game();
|
|
};
|
|
|
|
#endif
|