using System.Collections; using System.Collections.Generic; using UnityEngine; public class MonsterCoreDrop : Opponent { private GameObject mosnterCorePrefab; public override void Death() { Instantiate(mosnterCorePrefab, transform.position, Quaternion.identity); base.Death(); } }