Esempio n. 1
0
void JSONValue::AddIntVector2(const IntVector2& value)
{
    AddString(value.ToString());
}
Esempio n. 2
0
bool XMLElement::SetIntVector2(const ea::string& name, const IntVector2& value)
{
    return SetAttribute(name, value.ToString());
}
Esempio n. 3
0
void JSONValue::SetIntVector2(const String& name, const IntVector2& value)
{
    SetString(name, value.ToString());
}