using System.Collections; using System.Collections.Generic; using UnityEngine; namespace ShotSimulator.Target { public class BaseBroken : MonoBehaviour { public void DestroyBrokenGameObject() { Destroy(gameObject); } } }