Files
FNGameProj/Source/FortniteGame/Private/FortLiveSpectatorController.cpp
T
2024-03-03 23:44:39 +01:00

13 lines
488 B
C++

#include "FortLiveSpectatorController.h"
void AFortLiveSpectatorController::ServerSetFollowedPlayer_Implementation(AFortPlayerState* NewPlayerToFollow, const FVector& SpectatorLocation, bool bValidPos) {
}
bool AFortLiveSpectatorController::ServerSetFollowedPlayer_Validate(AFortPlayerState* NewPlayerToFollow, const FVector& SpectatorLocation, bool bValidPos) {
return true;
}
AFortLiveSpectatorController::AFortLiveSpectatorController() {
this->FollowedPlayerState = NULL;
}