diff options
Diffstat (limited to 'structs.go')
| -rw-r--r-- | structs.go | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -8,8 +8,12 @@ import ( // stores the raw toolkit internals type guiWidget struct { - Width int - Height int + parent *guiWidget + children []*guiWidget + node *tree.Node // the pointer back to the tree + cuiName string + Width int + Height int c int val map[string]int |
