]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/tile.h
Write common mapgen params to map_meta.txt on world initialization
[dragonfireclient.git] / src / tile.h
index f4dc572e7cbbe668ed2165a4df2a15c2d9c0549b..ea7a9135afb554133c159ddd6a2eba559408f32e 100644 (file)
@@ -27,7 +27,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include <IrrlichtDevice.h>
 #include "threads.h"
 #include <string>
-#include <map>
+#include <vector>
 
 class IGameDef;
 
@@ -272,7 +272,7 @@ struct TileSpec
        // Animation parameters
        u8 animation_frame_count;
        u16 animation_frame_length_ms;
-       std::map<u32, FrameSpec> frames;
+       std::vector<FrameSpec> frames;
 
        u8 rotation;
 };