示例#1
0
文件: App.cs 项目: juherask/VRPGame
    static void Main(string[] args)
    {
        using (VRPGame game = new VRPGame())
        {
            //TryToSwitchAntialiasingOn();
#if !DEBUG
            //game.IsFullScreen = true;
#endif
            game.Run();
        }
    }
示例#2
0
 public VRPProblemSelector(VRPGame game)
 {
     this.game = game;
 }