2026-03-31 물체 상호작용

This commit is contained in:
2026-03-31 18:08:26 +09:00
parent 71dfbf1af2
commit 902b1b76fb
141 changed files with 11063 additions and 343 deletions

View File

@@ -0,0 +1,8 @@
using UnityEngine;
public interface IInteractable
{
public void InteractOpen();
public void InteractClose();
public void InteractExec(PlayerCharacterController player);
}