mirror of
https://github.com/Theaninova/mhlib.git
synced 2026-01-07 17:22:50 +00:00
13 lines
291 B
Rust
13 lines
291 B
Rust
use crate::pro::PowerRenderObject;
|
|
use binrw::BinRead;
|
|
use std::fs::File;
|
|
|
|
pub mod pro;
|
|
pub mod trk;
|
|
|
|
fn main() {
|
|
let mut file = File::open(r#"../games/Moorhuhn Kart/data/alk.pro"#).unwrap();
|
|
let result = PowerRenderObject::read(&mut file).unwrap();
|
|
println!("{:#?}", result);
|
|
}
|