Files
Darklings-FightingGame/Assets/_Project/Scripts/HelperScripts/DestroyAnimationEvent.cs
2022-12-14 18:33:44 +02:00

12 lines
164 B
C#

using UnityEngine;
namespace Demonics.Utility
{
public class DestroyAnimationEvent : MonoBehaviour
{
public void Destroy()
{
Destroy(gameObject);
}
}
}