blob: 4d67760e7459ee9110802ce98e46a5cf7af24075 (
plain)
1
2
3
4
5
6
7
8
9
10
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}");
}
}
|