ShiftOS_TheReturn/ShiftOS.Modding.VirtualMachine/Program.cs

21 lines
422 B
C#
Raw Normal View History

2017-02-02 14:47:23 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace ShiftOS.Modding.VirtualMachine
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
ShiftOS.WinForms.Program.Main();
}
}
}