示例#1
0
 public override void Draw(SpriteBatch spriteBatch)
 {
     base.DrawWithOffset(spriteBatch, new Vector2(20, 35));
     spriteBatch.DrawString(font, "Current Weapons: ", this.Location, Color.White);
     textMenu.SwitchOutString(currentCommands[controller.CurrentIndex].Description);
     textMenu.Draw(spriteBatch);
 }
示例#2
0
 public override void Draw(SpriteBatch spriteBatch)
 {
     base.Draw(spriteBatch);
     textMenu.Draw(spriteBatch);
 }
示例#3
0
 public override void Draw(SpriteBatch spriteBatch)
 {
     base.Draw(spriteBatch);
     textMenu.SwitchOutString(currentCommands[controller.CurrentIndex].Description);
     textMenu.Draw(spriteBatch);
 }