diff options
Diffstat (limited to 'JamHelper/Assets/JamUtils/FPSControllerVelocity/Scripts/StairChecker.cs')
-rw-r--r-- | JamHelper/Assets/JamUtils/FPSControllerVelocity/Scripts/StairChecker.cs | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/JamHelper/Assets/JamUtils/FPSControllerVelocity/Scripts/StairChecker.cs b/JamHelper/Assets/JamUtils/FPSControllerVelocity/Scripts/StairChecker.cs new file mode 100644 index 0000000..d5b881e --- /dev/null +++ b/JamHelper/Assets/JamUtils/FPSControllerVelocity/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()
+ {
+
+ }
+}
|