summaryrefslogtreecommitdiff
path: root/engine/Settings/State.go
blob: 1db80244384cf944f117838f38eda90d1ea97f4b (plain)
1
2
3
4
5
6
7
8
9
10
package settings

// The state of the mgame that is not saved between sessions
type GlobalState struct {
	DrawColliders bool
}

var State = GlobalState {
	DrawColliders: true,
}