This commit is contained in:
Bims 2023-11-30 17:22:46 +11:00 committed by GitHub
commit 0419dc1d68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View File

@ -47,6 +47,7 @@ namespace BattleBitAPI.Common
public static readonly Gadget SledgeHammerSkinB = new Gadget("Sledge Hammer SkinB");
public static readonly Gadget SledgeHammerSkinC = new Gadget("Sledge Hammer SkinC");
public static readonly Gadget PickaxeIronPickaxe = new Gadget("Pickaxe IronPickaxe");
public static readonly Gadget AntiGrenadeTrophy = new Gadget("Anti Grenade Trophy");
// ----- Public Calls -----
public static bool TryFind(string name, out Gadget item)

View File

@ -60,6 +60,7 @@ namespace BattleBitAPI.Common
public static readonly Attachment Pistol8xScope = new Attachment("Pistol_8x_Scope", AttachmentType.MainSight);
public static readonly Attachment BurrisAR332 = new Attachment("BurrisAR332", AttachmentType.MainSight);
public static readonly Attachment HS401G5 = new Attachment("HS401G5", AttachmentType.MainSight);
public static readonly Attachment F2000_Sight = new Attachment("F2000_Sight", AttachmentType.MainSight);
// ----- Top Scope -----
public static readonly Attachment DeltaSightTop = new Attachment("Delta_Sight_Top", AttachmentType.TopSight);

View File

@ -53,6 +53,8 @@ namespace BattleBitAPI.Common
public readonly static Weapon MG36 = new Weapon("MG36", WeaponType.LightSupportGun_LSG);
public readonly static Weapon AK5C = new Weapon("AK5C", WeaponType.Rifle);
public readonly static Weapon Ultimax100 = new Weapon("Ultimax100", WeaponType.LightMachineGun_LMG);
public readonly static Weapon G3 = new Weapon("G3", WeaponType.DMR);
public readonly static Weapon F2000 = new Weapon("F2000", WeaponType.Rifle);
// ----- Public Calls -----
public static bool TryFind(string name, out Weapon item)