Basic renrs-gui implementation

This commit is contained in:
Elnu 2023-05-21 14:51:33 -07:00
parent badd78db79
commit 20a8bf41b7
10 changed files with 2913 additions and 13 deletions

2583
demo/Cargo.lock generated

File diff suppressed because it is too large Load diff

View file

@ -6,4 +6,4 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
renrs = { path = "../renrs" }
renrs-gui = { path = "../renrs-gui" }

View file

@ -1,6 +1,3 @@
fn main() {
let commands = renrs::parse_file("demo.rpy");
for command in commands {
println!("{:?}", command);
}
renrs_gui::run("demo.rpy".into()).unwrap();
}