package ui import rl "github.com/gen2brain/raylib-go/raylib" type UIElement interface { Init(Menu) Destroy() Update() // Draw the element with the given size Draw(*rl.Rectangle) }