diff options
| author | Jeff Carr <[email protected]> | 2022-10-08 23:51:48 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2022-10-08 23:51:48 -0500 |
| commit | dd7d277a86f25116cc1c0130a763409a166d49b4 (patch) | |
| tree | 7bf1f9b67f2f3d34e5153ccfa0b60c72cf9fb774 /gui.go | |
| parent | 086986b6b8f55d15d18595bcbf3f76c023365b61 (diff) | |
Try renaming 'Node' to 'Box'
Diffstat (limited to 'gui.go')
| -rw-r--r-- | gui.go | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -14,16 +14,18 @@ const Xaxis = 0 // box that is horizontal const Yaxis = 1 // box that is vertical func init() { - log.Println("gui.init() REMOVE THIS init()") + log.Println("gui.init() has been run") + Data.buttonMap = make(map[*ui.Button]*GuiButton) + Data.WindowMap = make(map[string]*GuiWindow) Data.NodeMap = make(map[string]*Node) + Data.NodeSlice = make([]*Node, 0) Config.counter = 0 Config.prefix = "wit" Config.DebugNode = false Config.DebugTabs = false - Config.Stretchy = true } func GuiInit() { |
