Initial commit

This commit is contained in:
2026-01-13 15:43:33 +00:00
commit 44ef19d058
4517 changed files with 1234348 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
using UnityEngine;
public interface IInteractable
{
void Interact(GameObject interactor);
bool CanInteract(GameObject interactor);
string GetInteractionPrompt();
void OnHighlight();
void OnUnhighlight();
}