This commit is contained in:
Edgar 2023-07-06 13:59:02 +02:00
parent fcb8773e2b
commit 87c9b84024
No known key found for this signature in database
GPG key ID: 70ADAE8F35904387

View file

@ -10,17 +10,18 @@ mod tokens_cfg;
mod tokens_cpp; mod tokens_cpp;
bitflags! { bitflags! {
#[rustfmt::skip]
#[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)] #[derive(Clone, Copy, Debug, PartialEq, Eq, Hash, PartialOrd, Ord)]
struct CFGFlags: u32 { struct CFGFlags: u32 {
const SAVE = 0b00000001; const SAVE = 1 << 0;
const CLIENT = 0b00000010; const CLIENT = 1 << 1;
const SERVER = 0b00000100; const SERVER = 1 << 2;
const INSENSITIVE = 0b00001000; const INSENSITIVE = 1 << 3;
const NON_TEEHISTORIC = 0b00010000; const NON_TEEHISTORIC = 1 << 4;
const MASTER = 0b00100000; const MASTER = 1 << 5;
const ECON = 0b01000000; const ECON = 1 << 6;
const GAME = 0b10000000; const GAME = 1 << 7;
const COLALPHA = 0b100000000; const COLALPHA = 1 << 8;
} }
} }