/// Size of a tile in pixels
pub const TILE_SIZE: usize = 32;
/// The light ID of complete black
pub const LIGHT_BLACK: u8 = 0;
/// Light ID of no lighting edits
pub const LIGHT_NORMAL: u8 = 3;
/// Light ID of complete white (Max light ID)
pub const LIGHT_WHITE: u8 = 7;
/// Opaque transparency ID
pub const OPAQUE: u8 = 0;
/// Clear transparency ID (Max transparency ID)
pub const CLEAR: u8 = 7;
/// The frame rate of CNM Online
pub const FRAME_RATE: i32 = 30;