示例#1
0
 public MONOGraphics(MONOGame game, int width, int height, IFontEngine fontEngine, DebugOptions debugOptions = null)
     : base(width, height, fontEngine, debugOptions)
 {
     this.game = game;
 }
示例#2
0
 public MONOFontEngine(MONOGame game)
 {
     this.game = game;
 }
示例#3
0
 static void Main()
 {
     using (var game = new MONOGame())
         game.Run();
 }