Open source Star Ruler 2 source code!

This commit is contained in:
Lucas de Vries
2018-07-17 14:15:37 +02:00
commit cc307720ff
4342 changed files with 2365070 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
bool CHEATS_ENABLED_THIS_GAME = false;
bool CHEATS_ENABLED = false;
bool getCheatsEnabled() {
return CHEATS_ENABLED;
}
bool getCheatsEverOn() {
return CHEATS_ENABLED_THIS_GAME;
}
void serverCheatsEnabled(bool enabled) {
CHEATS_ENABLED = enabled;
if(enabled)
CHEATS_ENABLED_THIS_GAME = true;
}
void syncInitial(Message& msg) {
msg >> CHEATS_ENABLED;
msg >> CHEATS_ENABLED_THIS_GAME;
}