]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/constants.qh
Merge branch 'master' into martin-t/limit
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / constants.qh
1 #pragma once
2
3 const int FL_WEAPON = BIT(13);
4 const int FL_POWERUP = BIT(14);
5 const int FL_PROJECTILE = BIT(15);
6 const int FL_TOSSED = BIT(16);
7 const int FL_NO_WEAPON_STAY = BIT(17);
8 const int FL_SPAWNING = BIT(18);
9 const int FL_PICKUPITEMS = BIT(19);
10
11 const int SVC_SETVIEW = 5;
12
13 const int RESPAWN_FORCE = BIT(0);
14 const int RESPAWN_SILENT = BIT(1);
15 const int RESPAWN_DENY = BIT(2);
16
17 #define EFMASK_CHEAP (EF_ADDITIVE | EF_DOUBLESIDED | EF_FULLBRIGHT | EF_NODEPTHTEST | EF_NODRAW | EF_NOGUNBOB | EF_NOSHADOW | EF_LOWPRECISION | EF_SELECTABLE | EF_TELEPORT_BIT)
18
19 const int NUM_PLAYERSKINS_TEAMPLAY = 3;