Files
Stair_Horror/Assets/Scripts/IInteractable.cs
2025-12-01 16:30:54 +00:00

8 lines
234 B
C#

using UnityEngine;
// This is an interface. Any script that uses this MUST have an Interact function.
public interface IInteractable
{
void Interact();
string GetDescription(); // Useful for UI text like "Press E to Switch"
}