10 lines
189 B
C#

namespace SlatedGameToolkit.Tools.System.Interaction
{
public interface IInteractable
{
void Tell(string message);
void Separate();
string Listen();
}
}