Files
FebGameJam/Assets/Scripts/DestroyTrigger.cs
T
2022-02-26 18:45:46 -06:00

18 lines
346 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class DestroyTrigger : Trigger
{
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
public override void Action() {
Destroy(this.gameObject);
}
}