Default Configuration Class

Spritesheet Implementation
Sprite Display
Sprite Size by Display Resolution
Placeholder Spritesheet Image
This commit is contained in:
Syntriax
2020-06-04 11:47:16 +03:00
parent 85a7a090b5
commit 8183ad080e
7 changed files with 183 additions and 6 deletions

19
GameWindow.hpp Normal file
View File

@@ -0,0 +1,19 @@
#include "SynEngine.hpp"
class GameWindow
{
private:
sf::Vector2i windowDimensions;
sf::RenderWindow window;
public:
GameWindow(/* args */);
~GameWindow();
};
GameWindow::GameWindow(/* args */)
{
}
GameWindow::~GameWindow()
{
}