1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
extern crate byteorder;
extern crate num_rational;
extern crate image;

pub mod mul_reader;
pub mod utils;

pub mod color;

pub mod art;
pub mod skills;
pub mod hues;
pub mod map;
pub mod tiledata;
pub mod gump;
pub mod anim;
pub mod texmaps;

#[cfg(test)]
mod tests {
    mod test_mul_reader;
    mod test_color;
    mod test_skills;
    mod test_hues;
    mod test_art;
    mod test_gump;
//    mod test_tiledata;
}