package settings // The state of the mgame that is not saved between sessions type GlobalState struct { DrawColliders bool } var State = GlobalState { DrawColliders: false, }