Nerfed/Nerfed.Editor/Program.cs

12 lines
161 B
C#
Raw Normal View History

using Nerfed.Runtime;
namespace Nerfed.Editor;
2024-07-05 12:56:37 +02:00
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
}
}