// Current version of FlatCityBuf
pub const VERSION: u8 = 1;
// Magic bytes for FlatCityBuf
pub const MAGIC_BYTES: = ;
// Maximum buffer size for header
pub const HEADER_MAX_BUFFER_SIZE: usize = 1024 * 1024 * 512; // 512MB
// Size of magic bytes
pub const MAGIC_BYTES_SIZE: usize = 8;
// Size of header size
pub const HEADER_SIZE_SIZE: usize = 4;