aboutsummaryrefslogtreecommitdiff
path: root/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Scripts/StairChecker.cs
diff options
context:
space:
mode:
Diffstat (limited to 'JamHelper/Assets/JamUtils/FirstPersonCharacterController/Scripts/StairChecker.cs')
-rw-r--r--JamHelper/Assets/JamUtils/FirstPersonCharacterController/Scripts/StairChecker.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Scripts/StairChecker.cs b/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Scripts/StairChecker.cs
new file mode 100644
index 0000000..d5b881e
--- /dev/null
+++ b/JamHelper/Assets/JamUtils/FirstPersonCharacterController/Scripts/StairChecker.cs
@@ -0,0 +1,19 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class StairChecker : MonoBehaviour
+{
+ public Transform upper;
+ public Transform lower;
+
+ void Start()
+ {
+
+ }
+
+ void Update()
+ {
+
+ }
+}