mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
23 lines
509 B
C++
23 lines
509 B
C++
#include "FortLocalPlayer.h"
|
|
|
|
UFortGameUserSettings* UFortLocalPlayer::GetLocalSettings() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortContentControlsManager* UFortLocalPlayer::GetContentControlsManager() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortClientSettingsRecord* UFortLocalPlayer::GetClientSettings() const {
|
|
return NULL;
|
|
}
|
|
|
|
UFortLocalPlayer::UFortLocalPlayer() {
|
|
FortOnlineAccount = NULL;
|
|
ClientSettingsRecord = NULL;
|
|
ContentControlsManager = NULL;
|
|
bControllerAttached = true;
|
|
PoiTracker = NULL;
|
|
}
|
|
|