Added class Level for runtime world stuff

This commit is contained in:
MihailRis
2022-06-29 17:12:58 +03:00
committed by GitHub
parent 4ceba017c7
commit e8ca11894d
9 changed files with 81 additions and 35 deletions
+21
View File
@@ -0,0 +1,21 @@
#ifndef WORLD_LEVEL_H_
#define WORLD_LEVEL_H_
class Player;
class Chunks;
class Lighting;
class PhysicsSolver;
class ChunksController;
class Level {
public:
Player* player;
Chunks* chunks;
PhysicsSolver* physics;
Lighting* lighting;
ChunksController* chunksController;
Level(Player* player, Chunks* chunks, PhysicsSolver* physics);
~Level();
};
#endif /* WORLD_LEVEL_H_ */