rpgm-archive-decrypter-lib
Library for decrypting RPG Maker rgss
archives.
Used in rpgm-archive-decrypter.
Example
use ;
// Using Decrypter struct
let archive_content: = read.unwrap;
let mut decrypter = new;
// You can optionally set force
// decrypter.set_force(true)
decrypter.extract.unwrap;
// Using function
// let force = false; // When `true`, it will overwrite existing files in the game directory.
// extract_archive(&archive_content, "C:/Game", force).unwrap();
License
Project is licensed under WTFPL.