Swap kind to bytes and reduce chunk size

This commit is contained in:
Marc Di Luzio 2020-06-07 18:21:44 +01:00
parent ceca4eb7fa
commit aa4df38ead
3 changed files with 3 additions and 3 deletions

View file

@ -3,7 +3,7 @@ package game
import "fmt"
// Kind represents the type of a tile on the map
type Kind int
type Kind byte
// Chunk represents a fixed square grid of tiles
type Chunk struct {