Yeah, I kinda gave up, i will fix it later or something I recon

This commit is contained in:
2026-02-09 23:23:45 +00:00
parent 2952ec7085
commit 97caeafd58
16 changed files with 464 additions and 103 deletions
+14 -1
View File
@@ -30,10 +30,23 @@ type CreateWindowEv struct {
Window models.Window
}
type WindowCreatedEv struct {
type DestroyWindowEv struct {
ID int16
}
type LayoutRegisterWindowEv struct {
Window models.Window
}
type WindowCreatedEv struct {
ID int16
Title string
}
type WindowDestroyedEv struct {
ID int16
}
type ErrorCreateWindowEv struct {
Error error
}