Maraiah/source/marathon/map.rs

28 lines
415 B
Rust
Raw Normal View History

2019-03-01 01:27:14 -08:00
//! Structures used by Marathon's Map format.
2019-04-01 00:39:47 -07:00
pub mod ambi;
pub mod bonk;
pub mod epnt;
pub mod iidx;
pub mod lins;
pub mod lite;
pub mod ltfn;
pub mod medi;
pub mod minf;
pub mod note;
pub mod objs;
pub mod plac;
pub mod plat;
pub mod pnts;
pub mod poly;
pub mod sids;
pub mod stex;
2019-04-01 02:09:01 -07:00
pub mod term;
pub mod trmf;
pub mod trmg;
2019-02-20 12:24:47 -08:00
2019-03-09 14:03:20 -08:00
/// The number of game ticks per second.
2019-03-01 20:04:20 -08:00
pub const TICKS_PER_SECOND: u16 = 30;
2018-12-11 19:59:15 -08:00
// EOF