mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
17 lines
402 B
C++
17 lines
402 B
C++
#include "WeaponHitNotifyAudioBank.h"
|
|
|
|
UWeaponHitNotifyAudioBank::UWeaponHitNotifyAudioBank() {
|
|
SoundBody = NULL;
|
|
SoundCrit = NULL;
|
|
SoundShield = NULL;
|
|
SoundDeath = NULL;
|
|
SoundDeathCrit = NULL;
|
|
SoundBodyReceive = NULL;
|
|
SoundCritReceive = NULL;
|
|
SoundDeathReceive = NULL;
|
|
SoundDeathCritReceive = NULL;
|
|
SoundFallReceive = NULL;
|
|
SoundFallDeathReceive = NULL;
|
|
}
|
|
|