blob: 94ad2a5f4aff022de2a4de86f8c6ec985baae017 (
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: false,
}
|