Better commenting throughout

This commit is contained in:
2025-11-24 12:29:19 -07:00
parent 175479da69
commit 5e0413a259
14 changed files with 107 additions and 195 deletions

View File

@@ -7,6 +7,8 @@ import (
"github.com/hajimehoshi/ebiten/v2/vector"
)
// Surface types
type SurfaceTag int
const (
@@ -67,6 +69,8 @@ func (s *Surface) Draw(screen *ebiten.Image) {
)
}
// World container
type World struct {
Surfaces []*Surface
}