doodle/pkg/branding/branding.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

14 lines
345 B
Go

package branding
// Constants for branding and version information.
const (
AppName = "Sketchy Maze"
Summary = "A drawing-based maze game"
Version = "0.6.0-alpha"
Website = "https://www.sketchymaze.com"
Copyright = "2021 Noah Petherbridge"
// Update check URL
UpdateCheckJSON = "https://download.sketchymaze.com/version.json"
)