public KillScreenOptionModule(KillScreenOptionTypeModule repairType, PriceModule price, bool affordableForPlayer, int cooldownTime,
                               MessageLocalizedWildcardCommand descriptionKey, MessageLocalizedWildcardCommand descriptionKeyAddon,
                               MessageLocalizedWildcardCommand toolTipKey, MessageLocalizedWildcardCommand buttonKey)
 {
     this.repairType          = repairType;
     this.price               = price;
     this.affordableForPlayer = affordableForPlayer;
     this.cooldownTime        = cooldownTime;
     this.descriptionKey      = descriptionKey;
     this.descriptionKeyAddon = descriptionKeyAddon;
     this.toolTipKey          = toolTipKey;
     this.buttonKey           = buttonKey;
 }
 public KillScreenOptionModule(KillScreenOptionTypeModule pRepairType, PriceModule pPrice,
                               bool pAffordableForPlayer, int pCooldownTime,
                               MessageLocalizedWildcardCommand pDescriptionKey,
                               MessageLocalizedWildcardCommand pDescriptionKeyAddon,
                               MessageLocalizedWildcardCommand pToolTipKey,
                               MessageLocalizedWildcardCommand pButtonKey)
 {
     this.repairType          = pRepairType;
     this.price               = pPrice;
     this.affordableForPlayer = pAffordableForPlayer;
     this.cooldownTime        = pCooldownTime;
     this.descriptionKey      = pDescriptionKey;
     this.descriptionKeyAddon = pDescriptionKeyAddon;
     this.toolTipKey          = pToolTipKey;
     this.buttonKey           = pButtonKey;
 }