HeavenStudioPlus/Assets/Scripts/Util/CommonAnimEvents.cs

15 lines
267 B
C#
Raw Normal View History

2021-12-21 01:10:49 +00:00
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
namespace RhythmHeavenMania.Util
{
public class CommonAnimEvents : MonoBehaviour
{
public void Destroy()
{
Destroy(this.gameObject);
}
}
}