]> git.localhorst.tv Git - blank.git/blobdiff - src/world/Generator.hpp
store players in world save
[blank.git] / src / world / Generator.hpp
index b3cb61f891e5bef8f8535f5a4a52980747f9145f..aadf2cfbeed4aaa2f0167f10e524d863c997ecb2 100644 (file)
@@ -5,6 +5,7 @@
 #include "../rand/SimplexNoise.hpp"
 #include "../rand/WorleyNoise.hpp"
 
+#include <cstdint>
 #include <vector>
 
 
@@ -16,7 +17,7 @@ class Generator {
 
 public:
        struct Config {
-               unsigned int seed = 0;
+               std::uint64_t seed = 0;
                float stretch = 64.0f;
                float solid_threshold = 0.5f;
        };