1
0
mirror of https://github.com/XFox111/MotionDecoder.git synced 2026-04-22 06:18:01 +03:00
Files
MotionDecoder/MotionDecoder/Program.cs
T
2020-10-25 18:42:13 +03:00

21 lines
457 B
C#

using MotionDecoder.Forms;
using System;
using System.Windows.Forms;
namespace MotionDecoder
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}