[General] Structure optimization

This commit is contained in:
momo5502 2016-12-05 20:43:29 +01:00
parent 68548ad45a
commit 631726b1d9

View File

@ -975,9 +975,9 @@ namespace Game
enum playerFlag
{
PLAYER_FLAG_NOCLIP = 1,
PLAYER_FLAG_UFO = 2,
PLAYER_FLAG_FROZEN = 4,
PLAYER_FLAG_NOCLIP = 1 << 0,
PLAYER_FLAG_UFO = 1 << 1,
PLAYER_FLAG_FROZEN = 1 << 2,
};
typedef struct gclient_s