mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
13 lines
482 B
C++
13 lines
482 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() {
|
|
FollowedPlayerState = NULL;
|
|
}
|
|
|