Noah Petherbridge
2c032f1df7
* Integrate the new ui.MenuBar into the Editor Scene. * File: New Level/Doodad, Save [as], Open, Close, Exit * Edit: Undo, Redo, Level options * Level: Playtest * Tools: Debug overlay, Command shell * Help: User Manual, About * Add an About dialog accessible from the Help menu.
14 lines
357 B
Go
14 lines
357 B
Go
package branding
|
|
|
|
// Constants for branding and version information.
|
|
const (
|
|
AppName = "Project: Doodle"
|
|
Summary = "A drawing-based maze game"
|
|
Version = "0.1.0-alpha"
|
|
Website = "https://www.kirsle.net/tagged/Doodle"
|
|
Copyright = "2020 Noah Petherbridge"
|
|
|
|
// Update check URL
|
|
UpdateCheckJSON = "https://download.sketchymaze.com/version.json"
|
|
)
|