]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/common/monsters/monsters.qh
Clean up filenames a bit
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / monsters / monsters.qh
index ae994ae1b24a1dcf02fdcb7128f0c75147d04f63..0c9d4b88881ebb4230f974163497ab57d0933f63 100644 (file)
@@ -24,6 +24,20 @@ const float MON_FLAG_SUPERMONSTER = 2048; // incredibly powerful monster
 .string model; // full name of model
 .float spawnflags;
 
+// csqc linking
+#ifndef MENUQC
+.float anim_start_time;
+
+float MSF_UPDATE       = 2;
+float MSF_STATUS       = 4;
+float MSF_SETUP        = 8;
+float MSF_ANG          = 16;
+float MSF_MOVE         = 32;
+float MSF_ANIM         = 64;
+
+float MSF_FULL_UPDATE  = 16777215;
+#endif
+
 // other useful macros
 #define MON_ACTION(monstertype,mrequest) (get_monsterinfo(monstertype)).monster_func(mrequest)
 #define M_NAME(monstertype) (get_monsterinfo(monstertype)).monster_name