using System; using UnityEngine; public interface IPickable { PickUpType type { get; } void PickObject(GameObject obj); }