rage-rpf 0.2.0

RAGE Package File (RPF) archive parser and decryptor for GTA V and related titles
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod archive;
pub mod crypto;
pub mod tree;
pub mod writer;
pub mod ytd;
mod tests;

pub use archive::{RpfArchive, RpfEntry, RpfEntryKind, RpfEncryption, RpfFile,
                  resource_size_from_flags, resource_version_from_flags,
                  RPF7_MAGIC, RSC7_MAGIC};
pub use crypto::keys::GtaKeys;
pub use tree::{DirNode, FileRef, build_directory_tree, list_all_files};
pub use writer::RpfBuilder;
pub use ytd::{parse_ytd, TextureFormat, YtdTexture};