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
+1 -2
View File
@@ -10,9 +10,8 @@ class World {
public:
std::string name;
WorldFiles* wfile;
Chunks* chunks;
World(std::string name, std::string directory, Chunks* chunks);
World(std::string name, std::string directory);
~World();
};