rust/hedgewars-server/src/core/client.rs
changeset 15930 ab57c0d81748
parent 15569 4b2f3228f13b
child 15938 ce47259d5c86
equal deleted inserted replaced
15929:b6cd49768fc5 15930:ab57c0d81748
     8         const IS_READY = 0b0000_0100;
     8         const IS_READY = 0b0000_0100;
     9         const IS_IN_GAME = 0b0000_1000;
     9         const IS_IN_GAME = 0b0000_1000;
    10         const IS_CONTRIBUTOR = 0b0001_0000;
    10         const IS_CONTRIBUTOR = 0b0001_0000;
    11         const HAS_SUPER_POWER = 0b0010_0000;
    11         const HAS_SUPER_POWER = 0b0010_0000;
    12         const IS_REGISTERED = 0b0100_0000;
    12         const IS_REGISTERED = 0b0100_0000;
       
    13         const IS_MODERATOR = 0b1000_0000;
    13 
    14 
    14         const NONE = 0b0000_0000;
    15         const NONE = 0b0000_0000;
    15         const DEFAULT = Self::NONE.bits;
    16         const DEFAULT = Self::NONE.bits;
    16     }
    17     }
    17 }
    18 }