mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
17 lines
468 B
C++
17 lines
468 B
C++
#include "WeaponHitNotifyAudioBank.h"
|
|
|
|
UWeaponHitNotifyAudioBank::UWeaponHitNotifyAudioBank() {
|
|
this->SoundBody = NULL;
|
|
this->SoundCrit = NULL;
|
|
this->SoundShield = NULL;
|
|
this->SoundDeath = NULL;
|
|
this->SoundDeathCrit = NULL;
|
|
this->SoundBodyReceive = NULL;
|
|
this->SoundCritReceive = NULL;
|
|
this->SoundDeathReceive = NULL;
|
|
this->SoundDeathCritReceive = NULL;
|
|
this->SoundFallReceive = NULL;
|
|
this->SoundFallDeathReceive = NULL;
|
|
}
|
|
|