Add Box.Draw
This commit is contained in:
parent
e4801829a9
commit
d4cd392d14
1 changed files with 4 additions and 0 deletions
4
box.go
4
box.go
|
@ -58,3 +58,7 @@ func (b *Box) AddChild(w ...Widget) {
|
|||
|
||||
b.children = append(b.children, w...)
|
||||
}
|
||||
|
||||
func (b *Box) Draw(screen *ebiten.Image) error {
|
||||
return nil
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue