openquell/systems/system.go

9 lines
130 B
Go

package systems
import "github.com/hajimehoshi/ebiten/v2"
type System interface {
Update() error
Draw(screen *ebiten.Image)
}