You've already forked Darklings-FightingGame
mirror of
https://github.com/izzy2lost/Darklings-FightingGame.git
synced 2026-03-10 11:35:19 -07:00
12 lines
164 B
C#
12 lines
164 B
C#
using UnityEngine;
|
|
|
|
namespace Demonics.Utility
|
|
{
|
|
public class DestroyAnimationEvent : MonoBehaviour
|
|
{
|
|
public void Destroy()
|
|
{
|
|
Destroy(gameObject);
|
|
}
|
|
}
|
|
} |