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