Add Box.Draw

This commit is contained in:
Trevor Slocum 2023-10-24 12:50:41 -07:00
parent e4801829a9
commit d4cd392d14

4
box.go
View file

@ -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
}