]> git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/common/effects/qc/rubble.qh
406d602c145d2359a6dd4d52fa324640f9e0857b
[xonotic/xonotic-data.pk3dir.git] / qcsrc / common / effects / qc / rubble.qh
1 #pragma once
2
3 #ifdef GAMEQC
4 entityclass(Rubble);
5 classfield(Rubble).float creationtime;
6
7 IntrusiveList g_rubble;
8 STATIC_INIT(g_rubble) { g_rubble = IL_NEW(); }
9
10 void RubbleLimit(string cname, int limit, void(entity) deleteproc);
11
12 entity RubbleNew(entity e);
13 #endif