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