diff options
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Items/ItemMetadata.cs')
-rw-r--r-- | WorldlineKeepers/Assets/Scripts/Items/ItemMetadata.cs | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Items/ItemMetadata.cs b/WorldlineKeepers/Assets/Scripts/Items/ItemMetadata.cs new file mode 100644 index 0000000..e77f494 --- /dev/null +++ b/WorldlineKeepers/Assets/Scripts/Items/ItemMetadata.cs @@ -0,0 +1,23 @@ +using System.Collections; +using System.Collections.Generic; +using UnityEngine; + +namespace WK.Data +{ + + public class ItemMetadata + { + + public string uid; + + public string name_key; + + public string desc_key; + + public string icon_path; + + public string extra_data; + + } + +} |