コード例 #1
0
 public EvoGame()
 {
     graphics = new GraphicsDeviceManager(this);
     graphics.PreferredBackBufferWidth  = 1280;
     graphics.PreferredBackBufferHeight = 720;
     IsMouseVisible        = true;
     Content.RootDirectory = "Content";
     Instance = this;
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: pkupper/EvoNet
 static void Main()
 {
     NeuronalNetworkTest.Test();
     using (var game = new EvoGame())
         game.Run();
 }
コード例 #3
0
ファイル: UpdateModule.cs プロジェクト: pkupper/EvoNet
 public virtual void Initialize(EvoGame game)
 {
     this.game = game;
 }
コード例 #4
0
 static void Main()
 {
     using (var game = new EvoGame())
         game.Run();
 }