added systems (not used yet, see TODO)

This commit is contained in:
2024-02-09 20:20:13 +01:00
parent 006216398a
commit bbbe873ff7
6 changed files with 215 additions and 0 deletions

8
systems/system.go Normal file
View File

@@ -0,0 +1,8 @@
package system
import "github.com/hajimehoshi/ebiten/v2"
type System interface {
Update() error
Draw(screen *ebiten.Image)
}