Nerfed/Nerfed.Runtime/Program.cs

9 lines
138 B
C#
Raw Normal View History

2024-07-05 12:56:37 +02:00
namespace Nerfed.Runtime;
internal class Program
2024-07-05 12:21:17 +02:00
{
private static void Main(string[] args)
2024-07-05 12:21:17 +02:00
{
Engine.Run(args);
2024-07-05 12:21:17 +02:00
}
2024-07-05 12:56:37 +02:00
}