summaryrefslogtreecommitdiff
path: root/src/include/data_ini.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/data_ini.h')
-rw-r--r--src/include/data_ini.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/include/data_ini.h b/src/include/data_ini.h
index bf0920e..ade1898 100644
--- a/src/include/data_ini.h
+++ b/src/include/data_ini.h
@@ -53,12 +53,29 @@ struct styleIni {
struct styleObjects *objects;
};
+//////////////////////// MISC/LEMMING.INI FILE ////////////////////////
+struct lemmingAnim {
+ int haveMask, haveImask;
+
+ int lemmFrames, lemmDirs, lemmAnimType;
+ int maskFrames, maskDirs, maskStartFrame;
+ int imaskFrames, imaskDirs;
+ int xPos, yPos, posFlags;
+};
+
+struct miscIni {
+ int lemmingAnimCount;
+ struct lemmingAnim *lemmingAnims;
+};
+
//////////////////////// GLOBAL INI FILES ////////////////////////
typedef struct {
struct styleIni style;
struct levelIni level;
struct levelPackIni levelPack;
+ struct miscIni misc;
int firstPass;
} gameIni_t;
+
#endif /*DATA_INI_H*/