mirror of
https://github.com/ApfelTeeSaft/UnrealEvent.git
synced 2026-08-27 03:43:40 +00:00
56 lines
1.8 KiB
C++
56 lines
1.8 KiB
C++
#include "BuildingGameplayActorSpawnMachine.h"
|
|
#include "Net/UnrealNetwork.h"
|
|
|
|
void ABuildingGameplayActorSpawnMachine::SetSpawnMachineState(ESpawnMachineState NewState) {
|
|
}
|
|
|
|
bool ABuildingGameplayActorSpawnMachine::RebootPlayersInAir() const {
|
|
return false;
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnSpawnMachineStateChanged_Implementation() {
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnResurrectionStarted_Implementation() {
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnResurrectionCompleted_Implementation() {
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnRep_SpawnMachineState() {
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnPlayerPawnResurrected_Implementation(AFortPlayerPawn* PlayerPawn) {
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnInterruptLongUse_Implementation(AFortPlayerControllerAthena* AthenaPC) {
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::OnBeginLongUse_Implementation(AFortPlayerControllerAthena* AthenaPC) {
|
|
}
|
|
|
|
ESpawnMachineState ABuildingGameplayActorSpawnMachine::GetSpawnMachineState() const {
|
|
return ESpawnMachineState::Default;
|
|
}
|
|
|
|
float ABuildingGameplayActorSpawnMachine::GetCooldownLength() const {
|
|
return 0.0f;
|
|
}
|
|
|
|
void ABuildingGameplayActorSpawnMachine::GetLifetimeReplicatedProps(TArray<FLifetimeProperty>& OutLifetimeProps) const {
|
|
Super::GetLifetimeReplicatedProps(OutLifetimeProps);
|
|
|
|
DOREPLIFETIME(ABuildingGameplayActorSpawnMachine, SpawnMachineState);
|
|
}
|
|
|
|
ABuildingGameplayActorSpawnMachine::ABuildingGameplayActorSpawnMachine() {
|
|
this->ResurrectLocation = NULL;
|
|
this->SquadId = 0;
|
|
this->ActiveTeam = 0;
|
|
this->SpawnMachineState = ESpawnMachineState::Default;
|
|
this->InteractSoundCueLoop = NULL;
|
|
this->SpawnMachineSubTextState = ESpawnMachineSubTextState::None;
|
|
this->IndexIntoGameState = -1;
|
|
}
|
|
|