diff options
| author | Jeff Carr <[email protected]> | 2025-03-04 01:57:59 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-03-04 01:57:59 -0600 |
| commit | f65d80862e9ef92ab8b36829342a6738cbc4b5d5 (patch) | |
| tree | f8733a57b92c35d7d634e91a60aee98a549d6fa1 /structs.go | |
| parent | dcd32c255c4c4a7b31ebc2395a541704a753a092 (diff) | |
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 |
