Harrison a013c476e7 Began working on a graphical playground for testing.
Improved SDL exception class.

Engine code changes.

General progress.
2020-05-27 00:20:41 -05:00

9 lines
188 B
C#

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