RunGame() 정적인 개인적인 메소드

static private RunGame ( ) : void
리턴 void
예제 #1
0
파일: Program.cs 프로젝트: webconfig/Ballz
		public override void FinishedLaunching (MonoMac.Foundation.NSObject notification)
		{
			AppDomain.CurrentDomain.AssemblyResolve += (object sender, ResolveEventArgs a) =>  {
				if (a.Name.StartsWith("MonoMac")) {
					return typeof(MonoMac.AppKit.AppKitFramework).Assembly;
				}
				return null;
			};
			Program.RunGame();
		}