summaryrefslogtreecommitdiff
path: root/structs.go
diff options
context:
space:
mode:
Diffstat (limited to 'structs.go')
-rw-r--r--structs.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/structs.go b/structs.go
index af5264c..a074e56 100644
--- a/structs.go
+++ b/structs.go
@@ -80,7 +80,8 @@ type GuiWindow struct {
// There can be lots of these for each GuiWindow
type GuiBox struct {
Name string // field for human readable name
- Window *GuiWindow
+ Axis int // does it add items to the X or Y axis
+ Window *GuiWindow // the parent Window
// andlabs/ui abstraction mapping
UiBox *ui.Box