]> git.localhorst.tv Git - blank.git/blobdiff - src/ai/Spawner.hpp
store shapes in models rather than meshes
[blank.git] / src / ai / Spawner.hpp
index 4b20dd4589ccfa07ba2a591ea7a144fae43c856a..6591ef93d3a519648203526276608f437e0cd6ee 100644 (file)
@@ -14,6 +14,7 @@ class Entity;
 class GaloisLFSR;
 class Model;
 class Skeletons;
+class TextureIndex;
 class World;
 
 class Spawner {
@@ -23,6 +24,7 @@ public:
        ~Spawner();
 
        void LimitSkeletons(std::size_t begin, std::size_t end);
+       void LoadTextures(TextureIndex &);
 
        void Update(int dt);
 
@@ -49,6 +51,8 @@ private:
        std::size_t skeletons_offset;
        std::size_t skeletons_length;
 
+       std::vector<float> tex_map;
+
 };
 
 }