diff options
Diffstat (limited to 'GameCode/LerpBackToStartPos.cs')
-rw-r--r-- | GameCode/LerpBackToStartPos.cs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/GameCode/LerpBackToStartPos.cs b/GameCode/LerpBackToStartPos.cs new file mode 100644 index 0000000..cf73c0b --- /dev/null +++ b/GameCode/LerpBackToStartPos.cs @@ -0,0 +1,12 @@ +using UnityEngine; + +public class LerpBackToStartPos : MonoBehaviour +{ + private void Start() + { + } + + private void Update() + { + } +} |