mirror of
https://github.com/XFox111/MotionDecoder.git
synced 2026-04-22 06:18:01 +03:00
21 lines
457 B
C#
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());
|
|
}
|
|
}
|
|
}
|