Inheritance: EditorObjects.EditorWindow
Ejemplo n.º 1
0
        static void Main(string[] args)
		{
            try
            {
                GameForm frm = new GameForm();
                if (frm.IsDisposed)
                    return;

                ProcessCommandLineArguments(args);

                EditorWindow.MinimumFrameLength = 1 / 60.0f;

                frm.Run(args);
            }
            catch (Exception e)
            {
                System.Windows.Forms.MessageBox.Show(e.ToString());
            }
		}
Ejemplo n.º 2
0
        static void Main(string[] args)
        {
            try
            {
                GameForm frm = new GameForm();
                if (frm.IsDisposed)
                {
                    return;
                }

                ProcessCommandLineArguments(args);

                EditorWindow.MinimumFrameLength = 1 / 60.0f;

                frm.Run(args);
            }
            catch (Exception e)
            {
                System.Windows.Forms.MessageBox.Show(e.ToString());
            }
        }