boxbrawl/world/world.go

19 lines
244 B
Go

package world
const TPS = 144
const (
DefaultScreenWidth = 1280
DefaultScreenHeight = 720
)
var (
ScreenWidth, ScreenHeight = 0, 0
ConnectPromptVisible = true
ConnectPromptText string
ConnectPromptConfirmed bool
Debug = 1
)