Update() public method

public Update ( ) : void
return void
示例#1
0
 public override void Update(GameTime gameTime)
 {
     moneyLabel.Text = "Money: " + level.player1Base.Money;
     removeObjectsFromScene();
     ReadDebugKeyboard();
     UnitSpawner.Update(gameTime);
     base.Update(gameTime);
 }