DangerousD/AnimatorCreatorGraphical/Program.cs
2023-08-15 13:40:45 +03:00

14 lines
239 B
C#

using System;
namespace AnimatorCreatorGraphical
{
public static class Program
{
[STAThread]
static void Main()
{
using (var game = new Game1())
game.Run();
}
}
}