Pull out chunk based atlas into new file

This commit is contained in:
Marc Di Luzio 2020-07-10 16:54:43 +01:00
parent 655e00b41f
commit a0be8a463c
4 changed files with 281 additions and 275 deletions

View file

@ -70,7 +70,7 @@ func NewWorld(chunkSize int) *World {
Rovers: make(map[string]Rover),
CommandQueue: make(map[string]CommandStream),
CommandIncoming: make(map[string]CommandStream),
Atlas: atlas.NewAtlas(chunkSize),
Atlas: atlas.NewChunkAtlas(chunkSize),
words: lines,
TicksPerDay: 24,
CurrentTicks: 0,