Files

10 lines
136 B
C#

using UnityEngine;
public class Spark : MonoBehaviour
{
public void AnimationFinished()
{
Destroy(gameObject);
}
}