using System.Collections; using System.Collections.Generic; using UnityEngine; namespace Assets.Scripts.InteractableObjects { public class Ore : InteractableObject { public override void handleInteraction(GameObject player) { throw new System.NotImplementedException(); } } }