Exemple #1
0
void ListFunctionDef::SetDefaultValues()
{
		SetProperty("Values","");

String xml( "<CryList />\
");
	xml.Replace("\\\"","\"");// replace \" with "  
XML x;
	x.LoadFrom(xml);
	x.SaveTo(*this);
}
Exemple #2
0
void BuilderFunctionDef::SetDefaultValues()
{
		Return = "void";
		Param = "();\n";
		SetProperty("Value","");

String xml( "<CryString Value=\"\" />\
");
	xml.Replace("\\\"","\"");// replace \" with "  
XML x;
	x.LoadFrom(xml);
	x.SaveTo(*this);
}