mirror of
https://github.com/Leahnaya/TheKingsRace.git
synced 2026-08-03 16:39:35 -05:00
22 lines
378 B
C#
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()
|
|
{
|
|
|
|
}
|
|
}
|