diff --git a/Unity/Assets/CODE/Traits.cs b/Unity/Assets/CODE/Traits.cs new file mode 100644 index 0000000000000000000000000000000000000000..0990030451822548cd711c730ceec6acee03fc16 --- /dev/null +++ b/Unity/Assets/CODE/Traits.cs @@ -0,0 +1,109 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace Assets.CODE +{ + class Traits + { + private string type; + private string pound; + private string effect; + private string group; + private List<string> condition; + private string legacy; + private string education; + + public string Type + { + get + { + return type; + } + + set + { + type = value; + } + } + + public string Pound + { + get + { + return pound; + } + + set + { + pound = value; + } + } + + public string Effect + { + get + { + return effect; + } + + set + { + effect = value; + } + } + + public string Group + { + get + { + return group; + } + + set + { + group = value; + } + } + + public List<string> Condition + { + get + { + return condition; + } + + set + { + condition = value; + } + } + + public string Legacy + { + get + { + return legacy; + } + + set + { + legacy = value; + } + } + + public string Education + { + get + { + return education; + } + + set + { + education = value; + } + } + } +} diff --git a/Unity/Library/EditorInstance.json b/Unity/Library/EditorInstance.json new file mode 100644 index 0000000000000000000000000000000000000000..125dcd7e082db4d83b55e934df879d37938173c6 --- /dev/null +++ b/Unity/Library/EditorInstance.json @@ -0,0 +1,4 @@ +{ + "process_id" : 13720, + "version" : "2017.1.1f1" +} \ No newline at end of file