This commit is contained in:
2023-07-03 15:48:01 +02:00
parent 663f578c7e
commit f5902947f8
9 changed files with 149 additions and 83 deletions

View File

@@ -4,6 +4,8 @@ type MenuMap map[string]Menu
type MenuLayout struct {
Background string
DPI float64
Size float64
}
type MenuItem struct {
@@ -13,6 +15,7 @@ type MenuItem struct {
}
type Menu struct {
MenuLayout MenuLayout
MenuItems []MenuItem
CurrentSelected int
MenuLayout MenuLayout
MenuItems []MenuItem
}