mirror of
https://github.com/reactos/RosTE.git
synced 2024-11-27 05:10:44 +00:00
b358474443
svn path=/trunk/tools/RosTE/; revision=205
19 lines
411 B
C#
19 lines
411 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace RosTEGUI
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// The main entry point for the application.
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.Run(new MainForm());
|
|
}
|
|
}
|
|
} |