mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
27 lines
558 B
C++
27 lines
558 B
C++
#include "FortWeaponComponent.h"
|
|
|
|
void UFortWeaponComponent::OnUnEquip(AFortWeapon* Weapon) {
|
|
}
|
|
|
|
void UFortWeaponComponent::OnReleaseTrigger(AFortWeapon* Weapon) {
|
|
}
|
|
|
|
void UFortWeaponComponent::OnReleaseSecondaryFire(AFortWeapon* Weapon) {
|
|
}
|
|
|
|
void UFortWeaponComponent::OnPressTrigger(AFortWeapon* Weapon) {
|
|
}
|
|
|
|
void UFortWeaponComponent::OnPressSecondaryFire(AFortWeapon* Weapon) {
|
|
}
|
|
|
|
void UFortWeaponComponent::OnEquip(AFortWeapon* Weapon) {
|
|
}
|
|
|
|
void UFortWeaponComponent::OnConsumeAmmo(int32 Quantity) {
|
|
}
|
|
|
|
UFortWeaponComponent::UFortWeaponComponent() {
|
|
}
|
|
|