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