package main import "time" const ( MapWidth = 50 MapHeight = 50 TileSize = 32 TileHeight = 2.0 TickRate = 2600 * time.Millisecond // Server tick rate (600ms) serverAddr = "localhost:6969" )