인터랙션 시스템 및 터널 기능 생성

This commit is contained in:
2026-01-15 16:45:14 +09:00
parent f70223a4aa
commit b8ecb9a24c
12 changed files with 959 additions and 37 deletions

View File

@@ -0,0 +1,10 @@
using UnityEngine;
public interface IInteractable
{
// 누가 상호작용을 시도했는지 알려주기 위해 GameObject를 인자로 받습니다.
void Interact(GameObject user);
// 선택 사항: 화면에 띄울 메시지를 반환하는 기능 (예: "통로 이용하기 [E]")
string GetInteractionText();
}