dungeoneer-cs/Program.cs

21 lines
400 B
C#

using System;
namespace Dungeoneer {
public sealed class Program {
public delegate void Command(IList<string> args);
public static Dictionary<string, Command> ReplCommands = new Dictionary<string, Command> {
{ "roll", (Command)Dungeoneer.Command.Roll }
};
public static void Main() {
Console.WriteLine("Starting");
Scripting.Run("repl.py");
}
}
}