improve file selection button, first version of uw8-tool to build base.wasm

This commit is contained in:
2021-11-03 23:58:44 +01:00
parent 160afba8b0
commit 348657163d
6 changed files with 231 additions and 15 deletions

9
uw8-tool/src/main.rs Normal file
View File

@@ -0,0 +1,9 @@
mod base_module;
use base_module::BaseModule;
use anyhow::Result;
fn main() -> Result<()> {
BaseModule::for_format_version(1)?.write_to_file("base.wasm")?;
Ok(())
}