Difference between revisions of "CProperties::get (type)"

From King Arthur's Gold Wiki
Jump to: navigation, search
(Created)
 
Line 1: Line 1:
 
<onlyinclude>
 
<onlyinclude>
+
 
 
</onlyinclude>
 
</onlyinclude>
+
 
 
<syntaxhighlight lang="cpp">
 
<syntaxhighlight lang="cpp">
 
 
s8 get_s8(const string &in)
 
s8 get_s8(const string &in)
+
u8 get_u8(const string &in)
 +
s16 get_s16(const string &in)
 +
u16 get_u16(const string &in)
 +
s32 get_s32(const string &in)
 +
u32 get_u32(const string &in)
 +
f32 get_f32(const string &in)
 +
bool get_bool(const string &in)
 +
string get_string(const string &in)
 +
Vec2f get_Vec2f(const string &in)
 +
position2di get_position2di(const string &in)
 
</syntaxhighlight>
 
</syntaxhighlight>
+
 
 
Object method of: [[CProperties]]
 
Object method of: [[CProperties]]
 
[[Category:Scripting]]
 
[[Category:Scripting]]
 
 
[[Category:Object Methods]]
 
[[Category:Object Methods]]

Revision as of 17:06, 29 September 2012



s8 get_s8(const string &in)
u8 get_u8(const string &in)
s16 get_s16(const string &in)
u16 get_u16(const string &in)
s32 get_s32(const string &in)
u32 get_u32(const string &in)
f32 get_f32(const string &in)
bool get_bool(const string &in)
string get_string(const string &in)
Vec2f get_Vec2f(const string &in)
position2di get_position2di(const string &in)

Object method of: CProperties