- bugfix for shared team resources

- added some new internal feature code to test auto updates for a future release
This commit is contained in:
SoftCoder
2014-12-30 12:16:35 -08:00
parent bcd6c7b310
commit efa7cb0346
10 changed files with 628 additions and 131 deletions

View File

@@ -54,6 +54,9 @@ private:
static string scenarioPath;
static string tutorialPath;
protected:
void processTextLine(bool is_utf8_language, char *lineBuffer);
public:
static void setApplicationPath(string value) { applicationPath=value; }
static string getApplicationPath() { return applicationPath; }
@@ -72,6 +75,8 @@ public:
static string getTutorialPath() { return tutorialPath; }
void clear();
void loadFromText(const string &text);
void load(const string &path,bool clearCurrentProperties=true);
void save(const string &path);

View File

@@ -239,7 +239,7 @@ float saturate(float value);
int round(float f);
//misc
int compareMajorMinorVersion(string versionA,string versionB);
int compareMajorMinorVersion(string versionA,string versionB, bool checkForNewVersionUpdates=false);
int getMajor(string version);
int getMinor(string version);
bool checkVersionComptability(string clientVersionString, string serverVersionString);