dungeoneer-cs/Program.cs

17 lines
207 B
C#
Raw Normal View History

2024-03-28 21:42:10 -04:00
using System;
namespace Dungeoneer {
public sealed class Program {
public static void Main() {
Console.WriteLine("Starting");
Dungeoneer.Scripting.Run("test.py");
}
}
}