This commit is contained in:
InventorXtreme 2024-04-21 20:29:11 -04:00
parent 3ec2ad7ecc
commit df6d9b91d0
2 changed files with 3 additions and 5 deletions

View file

@ -17,9 +17,9 @@ type RayGuiWindow struct {
}
const (
WINDOW_MODE_DRAG = iota
WINDOW_MODE_RESZIE = iota
WINDOW_MODE_NORMAL = iota
WINDOW_MODE_DRAG = 0
WINDOW_MODE_RESZIE = 1
WINDOW_MODE_NORMAL = 2
WINDOW_NO_EVENT = -1
)

View file

@ -4,8 +4,6 @@ import (
rl "github.com/gen2brain/raylib-go/raylib"
)
const VER = 34
type managewindowfunc func(*RayGuiWindowManager, *RayGuiWindow)
type RayGuiWindowManager struct {