summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XOpenDungeonUI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Client/Assets/Scripts/XOpenDungeonUI.cs')
-rw-r--r--Client/Assets/Scripts/XOpenDungeonUI.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/Client/Assets/Scripts/XOpenDungeonUI.cs b/Client/Assets/Scripts/XOpenDungeonUI.cs
new file mode 100644
index 00000000..77daa54e
--- /dev/null
+++ b/Client/Assets/Scripts/XOpenDungeonUI.cs
@@ -0,0 +1,19 @@
+using UnityEngine;
+using System.Collections;
+using XUtliPoolLib;
+
+public class XOpenDungeonUI : MonoBehaviour {
+
+ private IXPlayerAction _uiOperation;
+
+ void OnTriggerEnter(Collider c)
+ {
+ if (c.gameObject.CompareTag("Player"))
+ {
+ if (_uiOperation == null || _uiOperation.Deprecated)
+ _uiOperation = XInterfaceMgr.singleton.GetInterface<IXPlayerAction>(1);
+
+ if (_uiOperation != null) _uiOperation.GotoBattle();
+ }
+ }
+}