basic scripting

This commit is contained in:
2026-06-04 20:11:55 -05:00
parent f0bcc90480
commit e0477a12b8
7 changed files with 373 additions and 102 deletions
+9 -1
View File
@@ -44,4 +44,12 @@ bg = "#000000"
x = 10
y = 10
tile = "#"
passable = true
passable = true
script_name = "greeter"
[scripts]
greeter = """
fn init() {
log("hello world");
}
"""