Beispiel #1
0
 public static WeaponItem OrderItem(string order)
 {
     if (string.IsNullOrEmpty(order))
     {
         throw new ArgumentNullException(string.Format("Weapon Name: '{0}'", order), "The name of the weapon must be specified");
     }
     return(new WeaponItem(new WeaponOrder(TempWeaponDictionary.GetWeaponData(order))));
 }
Beispiel #2
0
 internal static WeaponOrder OrderBlah(string p)
 {
     return(new WeaponOrder(TempWeaponDictionary.GetWeaponData(p)));
 }
Beispiel #3
0
 internal static WeaponData GetWeaponTicket(string weaponName)
 {
     return(TempWeaponDictionary.GetWeaponData(weaponName));
 }