summaryrefslogtreecommitdiff
path: root/WorldlineKeepers/Assets/Scripts/Items/Item.cs
diff options
context:
space:
mode:
authorchai <215380520@qq.com>2023-05-13 15:20:20 +0800
committerchai <215380520@qq.com>2023-05-13 15:20:20 +0800
commit6fb204d494b897907d655b5752196983a82ceba2 (patch)
tree99b874414e9578cb68be5390b2cf08d2069ca77e /WorldlineKeepers/Assets/Scripts/Items/Item.cs
parent6c91f1ed6810a57da08a24dd1359f288c443dd75 (diff)
*misc
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; } }
+
+
+ }
+
+}