コード例 #1
0
 public AmGameBase()
 {
     Instance = this;
     graphics = new GraphicsDeviceManager(this);
     Content.RootDirectory = "Content";
     IsMouseVisible        = true;
     ScreenManager         = new AmScreenManager();
 }
コード例 #2
0
ファイル: AmGame.cs プロジェクト: Goodlookinguy/AtarashiiMono
 public void Run()
 {
     gameBase      = new AmGameBase();
     gameBase.game = this;
     gameBase.Run();
 }