wow_alchemy_m2/
lib.rs

1// Re-export main components
2pub mod chunks;
3pub mod error;
4pub mod game_version;
5pub mod header;
6pub mod md20;
7pub mod model;
8pub mod phys;
9pub mod skin;
10pub mod version;
11
12// Re-export common types
13// pub use anim::AnimFile;
14pub use error::{M2Error, Result};
15pub use md20::MD20Model;
16pub use model::M2Model;
17pub use phys::PhysFile;
18pub use skin::Skin;
19pub use version::MD20Version;
20
21/// Library version
22pub const VERSION: &str = env!("CARGO_PKG_VERSION");