diff options
| author | Jeff Carr <[email protected]> | 2023-04-28 10:30:27 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2023-04-28 10:30:27 -0500 |
| commit | 03942de00e133daf59da8ed3b6c3e71ce8afe316 (patch) | |
| tree | a5d5e4b3899631d939b90d1cfa21bc165be76695 /README-goreadme.md | |
| parent | 8b5f8fe42d9b161090ff91960050565959ac65dd (diff) | |
further code cleanups
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'README-goreadme.md')
| -rw-r--r-- | README-goreadme.md | 24 |
1 files changed, 10 insertions, 14 deletions
diff --git a/README-goreadme.md b/README-goreadme.md index e99ca1b..3e458b5 100644 --- a/README-goreadme.md +++ b/README-goreadme.md @@ -107,6 +107,12 @@ external things which might be useful * [GO Style Guide] ``` +## Variables + +```golang +var Config guiConfig +``` + ## Functions ### func [DebugWidgetWindow](/debugWidget.go#L52) @@ -123,7 +129,7 @@ Creates a window helpful for debugging this package `func ExampleCatcher(f func())` -### func [Indent](/debug.go#L126) +### func [Indent](/debug.go#L127) `func Indent(b bool, a ...interface{})` @@ -139,7 +145,7 @@ Creates a window helpful for debugging this package `func ShowDebugValues()` -### func [StandardExit](/main.go#L231) +### func [StandardExit](/main.go#L219) `func StandardExit()` @@ -163,24 +169,14 @@ This goroutine can be used like a watchdog timer This struct can be used with the go-arg package -### type [GuiConfig](/structs.go#L33) - -`type GuiConfig struct { ... }` - -#### Variables - -```golang -var Config GuiConfig -``` - -### type [Node](/structs.go#L63) +### type [Node](/structs.go#L55) `type Node struct { ... }` The Node is a binary tree. This is how all GUI elements are stored simply the name and the size of whatever GUI element exists -#### func [New](/main.go#L202) +#### func [New](/main.go#L190) `func New() *Node` |
