예제 #1
0
파일: JSONValue.cpp 프로젝트: Boshin/Urho3D
void JSONValue::AddIntVector2(const IntVector2& value)
{
    AddString(value.ToString());
}
예제 #2
0
bool XMLElement::SetIntVector2(const ea::string& name, const IntVector2& value)
{
    return SetAttribute(name, value.ToString());
}
예제 #3
0
파일: JSONValue.cpp 프로젝트: Boshin/Urho3D
void JSONValue::SetIntVector2(const String& name, const IntVector2& value)
{
    SetString(name, value.ToString());
}