more connection flags
This commit is contained in:
parent
ddf4caf14d
commit
89bf29f17d
@ -50,7 +50,16 @@ struct walkbot_header_s {
|
|||||||
enum EConnectionFlags {
|
enum EConnectionFlags {
|
||||||
CF_GOOD = (1 << 0),
|
CF_GOOD = (1 << 0),
|
||||||
CF_LOW_HEALTH = (1 << 1),
|
CF_LOW_HEALTH = (1 << 1),
|
||||||
CF_LOW_AMMO = (1 << 2)
|
CF_LOW_AMMO = (1 << 2),
|
||||||
|
|
||||||
|
CF_RED = (1 << 3),
|
||||||
|
CF_BLU = (1 << 4),
|
||||||
|
|
||||||
|
CF_CAPPED_1 = (1 << 5),
|
||||||
|
CF_CAPPED_2 = (1 << 6),
|
||||||
|
CF_CAPPED_3 = (1 << 7),
|
||||||
|
CF_CAPPED_4 = (1 << 8),
|
||||||
|
CF_CAPPED_5 = (1 << 9)
|
||||||
};
|
};
|
||||||
|
|
||||||
struct connection_s {
|
struct connection_s {
|
||||||
|
Reference in New Issue
Block a user