dungeoneer-cs/Program.cs

22 lines
400 B
C#
Raw Normal View History

2024-03-28 21:42:10 -04:00
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 }
};
2024-03-28 21:42:10 -04:00
public static void Main() {
Console.WriteLine("Starting");
Scripting.Run("repl.py");
2024-03-28 21:42:10 -04:00
}
}
}