- add support for models, sounds and images to be able to load from commondata

This commit is contained in:
Mark Vejvoda
2011-05-05 07:15:12 +00:00
parent 102363f151
commit c3d1d6fca0
10 changed files with 96 additions and 79 deletions

View File

@@ -144,14 +144,14 @@ public:
public:
const string getName() const {return name;}
const string getValue(string prefixValue="") const;
const string getValue(string prefixValue="", bool trimValueWithStartingSlash=false) const;
bool getBoolValue() const;
int getIntValue() const;
int getIntValue(int min, int max) const;
float getFloatValue() const;
float getFloatValue(float min, float max) const;
const string getRestrictedValue(string prefixValue="") const;
const string getRestrictedValue(string prefixValue="", bool trimValueWithStartingSlash=false) const;
};