openquell/systems/system.go

9 lines
130 B
Go
Raw Normal View History

2024-02-10 19:45:06 +01:00
package systems
2024-02-09 20:20:13 +01:00
import "github.com/hajimehoshi/ebiten/v2"
type System interface {
Update() error
Draw(screen *ebiten.Image)
}