17 lines
334 B
C#
17 lines
334 B
C#
namespace MultiversalDiplomacy.Script;
|
|
|
|
/// <summary>
|
|
/// A script handler for the interactive repl.
|
|
/// </summary>
|
|
public class ReplScriptHandler : IScriptHandler
|
|
{
|
|
public string Prompt => "5dp> ";
|
|
|
|
public IScriptHandler? HandleInput(string input)
|
|
{
|
|
Console.WriteLine($"[{input}]");
|
|
|
|
return this;
|
|
}
|
|
}
|