]> git.localhorst.tv Git - blobs.git/blobdiff - src/app/Assets.hpp
simple name generator
[blobs.git] / src / app / Assets.hpp
index ab6a4f3300e44b13d0d9be9e32579d426b8def3a..0512f7e5642c3f67c85a6a92b56d11ea233648df 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef BLOBS_APP_ASSETS_HPP_
 #define BLOBS_APP_ASSETS_HPP_
 
+#include "../creature/NameGenerator.hpp"
 #include "../graphics/AlphaSprite.hpp"
 #include "../graphics/ArrayTexture.hpp"
 #include "../graphics/Canvas.hpp"
@@ -8,6 +9,7 @@
 #include "../graphics/Font.hpp"
 #include "../graphics/PlanetSurface.hpp"
 #include "../graphics/SunSurface.hpp"
+#include "../math/GaloisLFSR.hpp"
 #include "../world/Resource.hpp"
 #include "../world/Set.hpp"
 #include "../world/TileType.hpp"
@@ -29,9 +31,13 @@ struct Assets {
        std::string skin_path;
        std::string tile_path;
 
+       math::GaloisLFSR random;
+
+       creature::NameGenerator name;
+
        struct {
                world::Set<world::Resource> resources;
-               world::Set<world::TileType> tiles;
+               world::Set<world::TileType> tile_types;
        } data;
 
        struct {