2
0
mirror of https://github.com/OrbTools/OrbCommon synced 2024-11-18 03:25:32 +00:00
This commit is contained in:
Minizbot2012 2021-02-09 14:37:56 -08:00
parent 4d4c7dcc69
commit c944aac7d7
No known key found for this signature in database
GPG Key ID: 977C8ADE12361917

View File

@ -1,5 +1,6 @@
package gui
//PageType PGrid, PCircle or PList
type PageType int
const (
@ -11,10 +12,12 @@ const (
PList
)
//GUI a GUI tree
type GUI struct {
Pages []Page
}
//Page A page of a binding GUI
type Page struct {
Hive string
Name string
@ -22,6 +25,7 @@ type Page struct {
Type PageType
}
//Key a keybind
type Key struct {
KeyID int
KeyName string