Added Lua parser implementation and Lua BNF through macro_rules!;

Added a windowed application shell from a tutorial using wgpu;
This commit is contained in:
2026-06-10 02:27:51 +01:00
parent 6e7201bd4e
commit ce2bd0b360
4 changed files with 360 additions and 41 deletions
+3 -1
View File
@@ -1,5 +1,7 @@
#![recursion_limit = "256"]
use game::run;
fn main() {
run().unwrap();
}
}