예제 #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
 public virtual void Initialize(EvoGame game)
 {
     this.game = game;
 }
예제 #4
0
 static void Main()
 {
     using (var game = new EvoGame())
         game.Run();
 }