summaryrefslogtreecommitdiff
path: root/Assets/Scripts/CustomInputModule.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Assets/Scripts/CustomInputModule.cs')
-rw-r--r--Assets/Scripts/CustomInputModule.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Assets/Scripts/CustomInputModule.cs b/Assets/Scripts/CustomInputModule.cs
new file mode 100644
index 0000000..c41eb63
--- /dev/null
+++ b/Assets/Scripts/CustomInputModule.cs
@@ -0,0 +1,14 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+using UnityEngine.EventSystems;
+
+public class CustomInputModule : BaseInputModule
+{
+ public override void Process()
+ {
+
+
+ // throw new System.NotImplementedException();
+ }
+}