Added generation seed support

This commit is contained in:
MihailRis
2022-07-01 02:31:30 +03:00
committed by GitHub
parent 37dd882fdb
commit 1038a79b78
11 changed files with 25 additions and 17 deletions
+2 -1
View File
@@ -10,8 +10,9 @@ class World {
public:
std::string name;
WorldFiles* wfile;
int seed;
World(std::string name, std::string directory);
World(std::string name, std::string directory, int seed);
~World();
};