Maraiah/maraiah/map.rs

40 lines
571 B
Rust
Raw Normal View History

2019-04-11 21:04:39 -07:00
//! Marathon Map format handling.
2019-03-01 01:27:14 -08:00
2019-04-01 00:39:47 -07:00
pub mod ambi;
2019-04-11 21:04:39 -07:00
pub mod attk;
2019-04-01 00:39:47 -07:00
pub mod bonk;
2019-04-11 21:04:39 -07:00
pub mod damg;
2019-06-21 18:34:10 -07:00
pub mod data;
2019-04-11 21:04:39 -07:00
pub mod entr;
2019-04-01 00:39:47 -07:00
pub mod epnt;
2019-04-11 21:04:39 -07:00
pub mod fxpx;
2019-06-21 18:34:10 -07:00
pub mod head;
2019-04-01 00:39:47 -07:00
pub mod iidx;
pub mod lins;
pub mod lite;
pub mod ltfn;
pub mod medi;
pub mod minf;
2019-04-11 21:04:39 -07:00
pub mod mnpx;
2019-04-12 18:46:51 -07:00
pub mod name;
2019-04-01 00:39:47 -07:00
pub mod note;
pub mod objs;
pub mod plac;
pub mod plat;
pub mod pnts;
pub mod poly;
2019-04-11 21:04:39 -07:00
pub mod prpx;
pub mod pxpx;
2019-04-01 00:39:47 -07:00
pub mod sids;
pub mod stex;
2019-04-01 02:09:01 -07:00
pub mod term;
2019-04-11 21:04:39 -07:00
pub mod trig;
2019-04-01 02:09:01 -07:00
pub mod trmf;
pub mod trmg;
2019-04-11 21:04:39 -07:00
pub mod wppx;
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