TheKingsRace/Assets/Scripts/Environment/Pitfall.cs
2021-11-29 13:54:29 -06:00

22 lines
378 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Pitfall : MonoBehaviour
{
// Add a thing where if player touches this we make them respawn cuz they 'fell'
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
}
}