10 lines
234 B
C#

namespace SlatedGameToolkit.Tools.CommandSystem.Interaction
{
public interface IInteractable
{
void Tell(string message);
void Separate();
string Listen();
public bool Listening { get; }
}
}