using UnityEngine; public interface IInteractable { // 누가 상호작용을 시도했는지 알려주기 위해 GameObject를 인자로 받습니다. void Interact(GameObject user); }