mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
18 lines
457 B
C++
18 lines
457 B
C++
#include "FortWeap_EditingTool.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void AFortWeap_EditingTool::OnRep_EditActor() {
|
|
}
|
|
|
|
void AFortWeap_EditingTool::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(AFortWeap_EditingTool, EditActor);
|
|
}
|
|
|
|
AFortWeap_EditingTool::AFortWeap_EditingTool() {
|
|
this->EditActor = NULL;
|
|
this->bEditConfirmed = false;
|
|
}
|
|
|