doodle/pkg/balance/feature_flags.go
Noah Petherbridge 3d8eedce35 Choice of palette when creating a new level
* In the "New Level" dialog, a "Palette:" option shows a MenuButton
  drop-down with options: Default, Colored Pencil, and Blueprint. These
  control the set of colors the new level starts with.
2021-06-05 20:51:20 -07:00

19 lines
337 B
Go

package balance
// Feature Flags to turn on/off experimental content.
var Feature = feature{
Zoom: false,
ChangePalette: false,
}
// FeaturesOn turns on all feature flags, from CLI --experimental option.
func FeaturesOn() {
Feature.Zoom = true
Feature.ChangePalette = true
}
type feature struct {
Zoom bool
ChangePalette bool
}