DIFF

class JsonObjectSource

Constructors 2

void JsonObject()
References m_Bools, m_Floats, m_Ints
Show 2 more, m_Strings, and m_Vectors2
void ~JsonObject()
References Clear()

Members 5

ref map<string, string> m_Strings
Referenced by AddString(), Clear(), GetJson()
Show 1 more, JsonObject()
ref map<string, int> m_Ints
Referenced by AddInt(), Clear(), GetJson()
Show 1 more, JsonObject()
ref map<string, float> m_Floats
Referenced by AddFloat(), Clear(), GetJson()
Show 1 more, JsonObject()
ref map<string, bool> m_Bools
Referenced by AddBool(), Clear(), GetJson()
Show 1 more, JsonObject()
ref map<string, ref Vector2> m_Vectors2
Referenced by AddVector2(), Clear(), GetJson()
Show 1 more, JsonObject()

Methods 7

void Clear()
Referenced by ~JsonObject()
void AddString(string name, string value)
References array.Count(), map.Insert(), string.Length()
Show 2 more, string.Split(), and m_Strings
void AddInt(string name, int value)
References map.Insert(), and m_Ints
void AddFloat(string name, float value)
References map.Insert(), and m_Floats
void AddBool(string name, bool value)
References map.Insert(), and m_Bools
void AddVector2(string name, float x, float y)