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, }