]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blobdiff - qcsrc/server/defs.qh
Add an intrusive list for projectiles
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / defs.qh
index a626a35824d585d2e4e370e347e8c9213cc8fffc..109f3ad0219ccd83349b077186df1500a4580cd2 100644 (file)
@@ -458,3 +458,6 @@ STATIC_INIT(g_turrets) { g_turrets = IL_NEW(); }
 
 IntrusiveList g_mines;
 STATIC_INIT(g_mines) { g_mines = IL_NEW(); }
+
+IntrusiveList g_projectiles;
+STATIC_INIT(g_projectiles) { g_projectiles = IL_NEW(); }