mirror of
https://github.com/xavo95/repak.git
synced 2025-03-12 22:57:02 +00:00
11 lines
303 B
Rust
11 lines
303 B
Rust
fn main() -> Result<(), unpak::Error> {
|
|
let pak = unpak::Pak::new(
|
|
std::io::BufReader::new(std::io::Cursor::new(include_bytes!("rando_p.pak"))),
|
|
unpak::Version::CompressionEncryption,
|
|
None,
|
|
)?;
|
|
for file in pak.files() {
|
|
println!("{file}");
|
|
}
|
|
Ok(())
|
|
}
|