Skip to content
This repository was archived by the owner on Dec 11, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions inc/shared/game.h
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#define SVF_DEADMONSTER BIT(1) // treat as CONTENTS_DEADMONSTER for collision
#define SVF_MONSTER BIT(2) // treat as CONTENTS_MONSTER for collision

#if USE_PROTOCOL_EXTENSIONS
#define SVF_PLAYER BIT(3)
#define SVF_BOT BIT(4)
#define SVF_NOBOTS BIT(5)
#define SVF_RESPAWNING BIT(6)
#define SVF_PROJECTILE BIT(7)
#define SVF_INSTANCED BIT(8)
#define SVF_DOOR BIT(9)
#define SVF_NOCULL BIT(10)
#define SVF_HULL BIT(11)
#endif

// edict->solid values

typedef enum {
Expand Down