Browse Source

Have version infomation in one place/file.

Steve Thielemann 3 years ago
parent
commit
0b3dabe204
1 changed files with 11 additions and 0 deletions
  1. 11 0
      version.go

+ 11 - 0
version.go

@@ -0,0 +1,11 @@
+package main
+
+var SPACEACE string
+var SPACEACE_VERSION string
+var SPACEACE_COPYRIGHT string
+
+func init() {
+	SPACEACE = "Space Ace"
+	SPACEACE_VERSION = "0.0.2"
+	SPACEACE_COPYRIGHT = "(C) 2021 Bugz, Red-Green Software"
+}