/// <summary>
 /// Determines the game logic to use when increasing
 /// the power of the player's weapon.
 /// </summary>
 /// <param name="toUse">The game to reference for game logic.</param>
 public void increasePower(wormz toUse, int amount)
 {
     toUse.increasePlayerPower(amount);
 }