1
0
Fork 0
tetris-go/game/ui/widget.go

6 lines
86 B
Go

package ui
type Widget interface {
HandleInput()
Draw(x, y int32, selected bool)
}