mirror of
https://github.com/FortniteModdingHub/FNGameProj.git
synced 2026-08-26 19:43:31 +00:00
23 lines
852 B
C++
23 lines
852 B
C++
#include "FortPlayspace.h"
|
|
|
|
void AFortPlayspace::OnMeshNetworkReady(EMeshNetworkNodeType NodeType) {
|
|
}
|
|
|
|
void AFortPlayspace::OnMeshNetworkEventStart(const FName EventName, const FDateTime& EventStartTime, const EMeshNetworkNodeType NodeType, const FString& EventParameters) {
|
|
}
|
|
|
|
void AFortPlayspace::OnMeshNetworkEventEnd(const FName EventName, const EMeshNetworkNodeType NodeType) {
|
|
}
|
|
|
|
void AFortPlayspace::OnMeshNetworkEventChange(const FName EventName, const FDateTime& EventStartTime, const EMeshNetworkNodeType NodeType, const FString& EventParameters) {
|
|
}
|
|
|
|
void AFortPlayspace::OnMeshNetworkEventBurst(const FName EventName, const EMeshNetworkNodeType NodeType, const FString& EventParameters) {
|
|
}
|
|
|
|
AFortPlayspace::AFortPlayspace() {
|
|
bSubscribeToMeshNetwork = false;
|
|
UserAcceptanceType = EFortPlayspaceUserAcceptanceType::CustomLogic;
|
|
}
|
|
|