Noah Petherbridge
1150d6d3e9
* Moves the game's Title, Summary and Version into pkg/branding where it is centrally controlled.
9 lines
172 B
Go
9 lines
172 B
Go
package branding
|
|
|
|
// Constants for branding and version information.
|
|
const (
|
|
AppName = "Project: Doodle"
|
|
Summary = "A drawing-based maze game"
|
|
Version = "0.0.8-alpha"
|
|
)
|