7 lines
80 B
C#
7 lines
80 B
C#
namespace Sandbox;
|
|
|
|
public interface IInteractable
|
|
{
|
|
public void OnUse();
|
|
}
|