summaryrefslogtreecommitdiff
path: root/SurvivalTest/Assets/Scripts/UI/Common/UIGridItemBase.cs
diff options
context:
space:
mode:
Diffstat (limited to 'SurvivalTest/Assets/Scripts/UI/Common/UIGridItemBase.cs')
-rw-r--r--SurvivalTest/Assets/Scripts/UI/Common/UIGridItemBase.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/SurvivalTest/Assets/Scripts/UI/Common/UIGridItemBase.cs b/SurvivalTest/Assets/Scripts/UI/Common/UIGridItemBase.cs
new file mode 100644
index 0000000..8e5ff24
--- /dev/null
+++ b/SurvivalTest/Assets/Scripts/UI/Common/UIGridItemBase.cs
@@ -0,0 +1,10 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public abstract class UIGridItemBase : MonoBehaviour
+{
+
+ public abstract void Set(object param);
+
+}