Develop and Download Open Source Software

Browse Subversion Repository

Contents of /UT3 Server Launcher/Program.cs

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1 - (show annotations) (download)
Thu Jun 11 12:13:07 2009 UTC (14 years, 9 months ago) by piglet
File size: 548 byte(s)


1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Windows.Forms;
5
6 namespace UT3_Server_Launcher
7 {
8 static class Program
9 {
10 /// <summary>
11 /// アプリケーションのメイン エントリ ポイントです。
12 /// </summary>
13 [STAThread]
14 static void Main()
15 {
16
17 Application.EnableVisualStyles();
18 Application.SetCompatibleTextRenderingDefault(false);
19 Application.Run(new FormMain());
20
21 }
22 }
23 }

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26