This repository has been archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// AK-12 Rifles inherit | ||
|
||
// AK-12 - Medium Barrel | ||
class CUP_arifle_AK12_Base: Rifle_Base_F { | ||
recoil = QCLASS(545_MediumBarrel); | ||
}; | ||
|
||
// Foregrip | ||
class CUP_arifle_AK12_AFG_Base: CUP_arifle_AK12_Base { | ||
recoil = QCLASS(545_Foregrip_Medium); | ||
}; | ||
class CUP_arifle_AK12_VG_Base: CUP_arifle_AK12_Base { | ||
recoil = QCLASS(545_Foregrip_Medium); | ||
}; | ||
|
||
// GL | ||
class CUP_arifle_AK12_GP34_Base: CUP_arifle_AK12_Base { | ||
recoil = QCLASS(545_GL_Medium); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// AK-19 Rifles inherit | ||
|
||
// AK-19 - Medium Barrel | ||
class CUP_arifle_AK19_Base: Rifle_Base_F { | ||
recoil = QCLASS(556_MediumBarrel); | ||
}; | ||
|
||
// Foregrip | ||
class CUP_arifle_AK19_AFG_Base: CUP_arifle_AK19_Base { | ||
recoil = QCLASS(556_Foregrip_Medium); | ||
}; | ||
class CUP_arifle_AK19_VG_Base: CUP_arifle_AK19_Base { | ||
recoil = QCLASS(556_Foregrip_Medium); | ||
}; | ||
|
||
// GL | ||
class CUP_arifle_AK19_GP34_Base: CUP_arifle_AK19_Base { | ||
recoil = QCLASS(556_GL_Medium); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// AK-15 Rifles inherit | ||
|
||
// AK-15 - Medium Barrel | ||
class CUP_arifle_AK15_Base: CUP_arifle_AK12_Base { | ||
recoil = QCLASS(762R_MediumBarrel); | ||
}; | ||
|
||
// Foregrip | ||
class CUP_arifle_AK15_AFG_Base: CUP_arifle_AK15_Base { | ||
recoil = QCLASS(762R_Foregrip_Medium); | ||
}; | ||
class CUP_arifle_AK15_VG_Base: CUP_arifle_AK15_Base { | ||
recoil = QCLASS(762R_Foregrip_Medium); | ||
}; | ||
|
||
// GL | ||
class CUP_arifle_AK15_GP34_Base: CUP_arifle_AK15_Base { | ||
recoil = QCLASS(762R_GL_Medium); | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters