Versions in this module Expand all Collapse all v0 v0.0.2 Apr 3, 2024 Changes in this version + var DefaultWinSettings = WindowData type WindowData + HasTitleBar bool + TitleButtonColor color.Color v0.0.1 Apr 1, 2024 Changes in this version + func AddWindow(windowID string, window WindowData) error + func CloseWindow(windowID string) error + func DeleteWindow(windowID string) error + func DrawWindows(screen *ebiten.Image) + func OpenWindow(windowID string) error + func UpdateWindow(windowID string, window WindowData) error + func UpdateWindowItems(windowID string, windowItems []WindowItemData) error + type V2i struct + X int + Y int + type WindowData struct + AutoCentered bool + BGColor color.Color + BorderColor color.Color + Borderless bool + CachePersist bool + Closable bool + Focused bool + KeepPosition bool + Movable bool + Resizable bool + StartPosition V2i + StartSize V2i + Title string + TitleBGColor color.Color + TitleColor color.Color + type WindowItemData struct + Action func() + ActionColor color.Color + Color color.Color + HoverColor color.Color + Position V2i + Size V2i + Text string