mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
26 lines
704 B
C++
26 lines
704 B
C++
#include "FortTrapGrenadeProjectile.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortTrapGrenadeProjectile::OnRep_DecoTool() {
|
|
}
|
|
|
|
void AFortTrapGrenadeProjectile::InitializeProjectileDecoHelperAndTool() {
|
|
}
|
|
|
|
UFortContextTrapItemDefinition* AFortTrapGrenadeProjectile::GetTrapDefinition() {
|
|
return NULL;
|
|
}
|
|
|
|
void AFortTrapGrenadeProjectile::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortTrapGrenadeProjectile, ProjectileDecoTool);
|
|
}
|
|
|
|
AFortTrapGrenadeProjectile::AFortTrapGrenadeProjectile() {
|
|
ProjectileDecoTool = NULL;
|
|
ProjectileDecoHelper = NULL;
|
|
TrapDefinition = NULL;
|
|
}
|
|
|