forked from koniifer/ableos
12 lines
171 B
Plaintext
12 lines
171 B
Plaintext
WindowID := struct {
|
|
host_id: int,
|
|
window_id: int,
|
|
}
|
|
|
|
create_window := fn(): WindowID {
|
|
return WindowID.(1, 2)
|
|
}
|
|
|
|
update_ui := fn(window_id: WindowID): void {
|
|
return
|
|
} |