doodle/pkg/branding/branding.go
Noah Petherbridge 1150d6d3e9 Add Branding Module for Centralized Game Info
* Moves the game's Title, Summary and Version into pkg/branding where it
  is centrally controlled.
2019-06-23 17:52:48 -07:00

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"
)