11 lines
139 B
C#
11 lines
139 B
C#
namespace Interactive
|
|
{
|
|
interface IInteractable
|
|
{
|
|
void Interact();
|
|
|
|
void LookAt();
|
|
|
|
void LookOut();
|
|
}
|
|
} |