]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Animation.h
Add bits as last arg to DECLARE_ANIM
[lugaru.git] / Source / Animation.h
index b8e821b721dff7e41daff1f2996d09b5c718e799..0720426efa38724a0144b81346d34560b383c881 100644 (file)
@@ -32,11 +32,13 @@ enum anim_height_type {
 
 
 enum animation_types {
-#define DECLARE_ANIM(id, file, height, attack) id,
+#define DECLARE_ANIM(id, ...) id,
 #include "Animation.def"
 #undef DECLARE_ANIM
 animation_count
 };
 
 extern Animation animation[animation_count];
+
+extern void loadAllAnimations();
 #endif