summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Items/Item.cs
diff options
context:
space:
mode:
Diffstat (limited to 'WorldlineKeepers/Assets/Scripts/Items/Item.cs')
-rw-r--r--WorldlineKeepers/Assets/Scripts/Items/Item.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/WorldlineKeepers/Assets/Scripts/Items/Item.cs b/WorldlineKeepers/Assets/Scripts/Items/Item.cs
new file mode 100644
index 0000000..bcffc5b
--- /dev/null
+++ b/WorldlineKeepers/Assets/Scripts/Items/Item.cs
@@ -0,0 +1,21 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using WK.Data;
+using WK.Items;
+
+namespace Wk.Items
+{
+
+ public class Item
+ {
+ private ItemMetadata m_Metadata;
+ public ItemMetadata metadata { get { return m_Metadata; } }
+
+ private ItemBehaviour m_Behaviour;
+ public ItemBehaviour behaviour { get { return m_Behaviour; } }
+
+
+ }
+
+}