Noah Petherbridge
3d8eedce35
* 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.
14 lines
345 B
Go
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"
|
|
)
|