20 lines
271 B
C++
20 lines
271 B
C++
|
#include "SynEngine.hpp"
|
||
|
|
||
|
class GameWindow
|
||
|
{
|
||
|
private:
|
||
|
sf::Vector2i windowDimensions;
|
||
|
sf::RenderWindow window;
|
||
|
public:
|
||
|
GameWindow(/* args */);
|
||
|
~GameWindow();
|
||
|
};
|
||
|
|
||
|
GameWindow::GameWindow(/* args */)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
GameWindow::~GameWindow()
|
||
|
{
|
||
|
}
|