static game #1

This commit is contained in:
Sandro Sobczyński
2020-11-03 21:49:16 +01:00
parent 9e3ed74b45
commit 5399b1744f
18 changed files with 180 additions and 194 deletions
+4 -4
View File
@@ -24,7 +24,7 @@ class Floors : public Game
{
public:
Floors();
Floors(const Engine &t_engine);
~Floors();
void onInit();
@@ -35,9 +35,9 @@ public:
private:
TextureRepository *texRepo;
LightManager lightManager;
FloorManager *floorManager;
Player *player;
Camera *camera;
FloorManager floorManager;
Player player;
Camera camera;
};
#endif