Noah Petherbridge
693664db6c
* Build the app with -tags="shareware" to compile the free/shareware build of the game. * `make build-free` compiles both binaries to the bin/ folder in shareware mode. * The constant balance.FreeVersion is true in the shareware build and all functionality related to the Doodad Editor UI mode is disabled in this build mode.
7 lines
121 B
Go
7 lines
121 B
Go
// +build !shareware
|
|
|
|
package balance
|
|
|
|
// FreeVersion is true in the free version of the game.
|
|
const FreeVersion = false
|