Go to the documentation of this file.00001 #region using statements
00002 using System;
00003 using System.Windows.Forms;
00004 using visLU.Gui;
00005 #endregion
00006 
00007 
00008 namespace visLU
00009 {
00010     static class Program
00011     {
00015         [STAThread] static void Main(string[] args)
00016         {
00017 
00018             DialogForm dialog = new DialogForm();
00019             dialog.Show();
00020             Application.Run(dialog);
00021 
00022             if (GameProperties.Instance.startGame)
00023             {
00024                 using (Game1 game = new Game1())
00025                 {
00026                   game.Run();
00027                 }
00028             }
00029           
00030         }
00031     }
00032 }
00033