summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/glk.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/glk.rs b/src/glk.rs
index ed308f9..4d67760 100644
--- a/src/glk.rs
+++ b/src/glk.rs
@@ -1,2 +1,11 @@
+use crate::interpreter::{self, Interpreter};
+
 pub struct Glk {
 }
+
+impl Glk {
+    pub fn call_func(interpreter: &mut Interpreter, func_id: u32, arg_count: u32) {
+        println!("Calling GLK function with ID {func_id}");
+    }
+}
+