more connection flags

This commit is contained in:
nullifiedcat 2017-08-17 14:29:30 +03:00
parent ddf4caf14d
commit 89bf29f17d

View File

@ -50,7 +50,16 @@ struct walkbot_header_s {
enum EConnectionFlags {
CF_GOOD = (1 << 0),
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 {