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