added manager, scene, and first examples

This commit is contained in:
2023-08-18 12:02:59 -04:00
parent 59d64fa7d7
commit 087b88e1e2
6 changed files with 289 additions and 0 deletions

16
go.mod
View File

@@ -1,3 +1,19 @@
module groovy
go 1.21.0
require (
github.com/hajimehoshi/ebiten/v2 v2.5.6
golang.org/x/image v0.6.0
)
require (
github.com/ebitengine/purego v0.4.0 // indirect
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20221017161538-93cebf72946b // indirect
github.com/jezek/xgb v1.1.0 // indirect
golang.org/x/exp v0.0.0-20190731235908-ec7cb31e5a56 // indirect
golang.org/x/mobile v0.0.0-20230301163155-e0f57694e12c // indirect
golang.org/x/sync v0.1.0 // indirect
golang.org/x/sys v0.7.0 // indirect
golang.org/x/text v0.8.0 // indirect
)