2024-10-31 01:06:39 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
|
|
|
const (
|
|
|
|
MapWidth = 50
|
|
|
|
MapHeight = 50
|
|
|
|
TileSize = 32
|
|
|
|
TileHeight = 2.0
|
2025-01-12 23:57:18 +01:00
|
|
|
TickRate = 600 * time.Millisecond // Server tick rate (600ms)
|
2024-10-31 01:06:39 +01:00
|
|
|
serverAddr = "localhost:6969"
|
|
|
|
)
|