cnmo_parse/lparse/level_data/
consts.rs

1/// Size of a tile in pixels
2pub const TILE_SIZE: usize = 32;
3/// The light ID of complete black
4pub const LIGHT_BLACK: u8 = 0;
5/// Light ID of no lighting edits
6pub const LIGHT_NORMAL: u8 = 3;
7/// Light ID of complete white (Max light ID)
8pub const LIGHT_WHITE: u8 = 7;
9/// Opaque transparency ID
10pub const OPAQUE: u8 = 0;
11/// Clear transparency ID (Max transparency ID)
12pub const CLEAR: u8 = 7;
13/// The frame rate of CNM Online
14pub const FRAME_RATE: i32 = 30;