Example #1
0
 //application entry point
 static void Main(string[] args)
 {
     using (FlxFactory game = new FlxFactory())
     {
         game.Run();
     }
 }
Example #2
0
        protected override void OnCreate(Bundle bundle)
        {
            base.OnCreate(bundle);

            // Create our OpenGL view, and display it
            FlxFactory.Activity = this;
            var g = new FlxFactory();

            SetContentView(g.Window);
            g.Run();
        }