BUG: make it compile
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
375444ea28
commit
c58dee3d01
|
@ -10,14 +10,13 @@ import (
|
||||||
// https://ieftimov.com/post/golang-datastructures-trees/
|
// https://ieftimov.com/post/golang-datastructures-trees/
|
||||||
|
|
||||||
type Node struct {
|
type Node struct {
|
||||||
id int
|
id string
|
||||||
Name string
|
Name string
|
||||||
tag string
|
|
||||||
Width int
|
Width int
|
||||||
Height int
|
Height int
|
||||||
|
|
||||||
uiType *ui.Control
|
uiType *ui.Control
|
||||||
Children []*Node
|
children []*Node
|
||||||
}
|
}
|
||||||
|
|
||||||
func (n Node) SetName(name string) {
|
func (n Node) SetName(name string) {
|
||||||
|
|
Loading…
Reference in New Issue