AK056/Assets/GameLogic/Origin/data/KeyValueObject.cs

14 lines
226 B
C#

[System.Serializable]
public class KeyValueObject
{
public string label;
public object value;
public KeyValueObject(string label, object value)
{
this.label = label;
this.value = value;
}
}