Difference between revisions of "CProperties::set (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">
 
 
void set_s8(const string &in, s8 v)
 
void set_s8(const string &in, s8 v)
+
void set_u8(const string &in, u8 v)
 +
void set_s16(const string &in, s16 v)
 +
void set_u16(const string &in, u16 v)
 +
void set_s32(const string &in, s32 v)
 +
void set_u32(const string &in, u32 v)
 +
void set_f32(const string &in, f32 v)
 +
void set_bool(const string &in, bool v)
 +
void set_string(const string &in, string v)
 +
void set_Vec2f(const string &in, Vec2f v)
 +
void set_position2di(const string &in, position2di v)
 
</syntaxhighlight>
 
</syntaxhighlight>
+
 
 
Object method of: [[CProperties]]
 
Object method of: [[CProperties]]
 
[[Category:Scripting]]
 
[[Category:Scripting]]
 
 
[[Category:Object Methods]]
 
[[Category:Object Methods]]

Revision as of 18:04, 29 September 2012



void set_s8(const string &in, s8 v)
void set_u8(const string &in, u8 v)
void set_s16(const string &in, s16 v)
void set_u16(const string &in, u16 v)
void set_s32(const string &in, s32 v)
void set_u32(const string &in, u32 v)
void set_f32(const string &in, f32 v)
void set_bool(const string &in, bool v)
void set_string(const string &in, string v)
void set_Vec2f(const string &in, Vec2f v)
void set_position2di(const string &in, position2di v)

Object method of: CProperties