forked from koniifer/ableos
14 lines
184 B
Plaintext
14 lines
184 B
Plaintext
|
create_window := fn(): WindowID {
|
||
|
return WindowID.(1, 2)
|
||
|
}
|
||
|
|
||
|
WindowID := struct {
|
||
|
host_id: int,
|
||
|
window_id: int,
|
||
|
}
|
||
|
|
||
|
/*
|
||
|
update_ui := fn(window_id: WindowID): bool {
|
||
|
return 1 == 0
|
||
|
}
|
||
|
*/
|