Example #1
0
        /// <summary>
        /// The main entry point for the application.
        /// </summary>
        static void Main(string[] args)
        {
			using (GameBase game = new GameBase())
			{
				game.Run();
			}
        }
Example #2
0
		void XnaCrossPanel_Load(object sender, EventArgs e)
		{
			Glt = new GameBase(Lt);
			Glb = new GameBase(Lb);
			Grt = new GameBase(Rt);
			Grb = new GameBase(Rb);
			Glt.Launch();
			Glb.Launch();
			Grt.Launch();
			Grb.Launch();
		}