mirror of
https://github.com/xavo95/repak.git
synced 2025-04-14 12:09:47 +00:00
15 lines
488 B
Rust
15 lines
488 B
Rust
fn main() -> Result<(), un_pak::Error> {
|
|
for version in un_pak::Version::iter().rev() {
|
|
match un_pak::Pak::new(
|
|
version,
|
|
std::io::BufReader::new(std::io::Cursor::new(include_bytes!("rando_p.pak"))),
|
|
) {
|
|
Ok(_) => {
|
|
println!("parsed successfully!");
|
|
return Ok(());
|
|
}
|
|
Err(e) => println!("{e}"),
|
|
}
|
|
}
|
|
Err(un_pak::Error::Other("no version can parse".to_string()))
|
|
}
|