improved lwo loading

This commit is contained in:
2023-05-28 19:30:32 +02:00
parent 5514b9eac9
commit 17e33d4881
8 changed files with 220 additions and 120 deletions

View File

@@ -6,7 +6,7 @@ pub mod pro;
pub mod trk;
fn main() {
let mut file = File::open(r#"E:\Games\Moorhuhn Kart\data\alk.pro"#).unwrap();
let mut file = File::open(r#"../games/Moorhuhn Kart/data/alk.pro"#).unwrap();
let result = PowerRenderObject::read(&mut file).unwrap();
println!("{:#?}", result);
}