示例#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();
 }