pureikyubu/RnD/SamplingProfiler/Program.cs
ogamespec 1a2a6e5366 Profiler tool skeleton
- Updated Dolwin Interop
2020-04-18 22:42:36 +03:00

22 lines
517 B
C#

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