X-Git-Url: https://git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fserver%2Fdefs.qh;h=a1c180cef831779830352ecfe6c0ad67c43409a7;hb=05ee5b1212a6537e5c5acb76dbc1ef9df40f85c6;hp=df791a62627fa7986966e1e3d15b94334bef1a07;hpb=fd94897955a07d2294cb5d5c13d1a7ef2991f711;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/server/defs.qh b/qcsrc/server/defs.qh index df791a626..a1c180cef 100644 --- a/qcsrc/server/defs.qh +++ b/qcsrc/server/defs.qh @@ -443,3 +443,9 @@ const int MIF_GUIDED_CONFUSABLE = MIF_GUIDED_HEAT | MIF_GUIDED_AI; .bool init_for_player_needed; .void(entity this, entity player) init_for_player; + +IntrusiveList g_monsters; +STATIC_INIT(g_monsters) { g_monsters = IL_NEW(); } + +IntrusiveList g_waypoints; +STATIC_INIT(g_waypoints) { g_waypoints = IL_NEW(); }