示例#1
0
 public void StartGame(Core.MatchInfo matchInfo, int renderFPS, int logicFPS)
 {
     Application.targetFrameRate = renderFPS;
     m_gameDeltaTime             = (1000 / logicFPS) / 1000f;
     InitCore();
     CreateGame(matchInfo, logicFPS);
     this.game.StartGame();
 }
示例#2
0
 public SingleVS(World world, MatchInfo matchInfo) : base(world, matchInfo)
 {
 }
示例#3
0
 public SinglePlay(World world, MatchInfo info) : base(world, info)
 {
 }