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
+2
View File
@@ -1,4 +1,5 @@
[package]
#![recursion_limit = "256"]
name = "game"
version = "0.1.0"
edition = "2024"
@@ -18,6 +19,7 @@ log = "0.4"
wgpu = "29.0.3"
pollster = "0.4.0"
console_error_panic_hook = "0.1.7"
parse = { path = "./parse" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"