unitysamples / LyraStarterGame /Plugins /CommonGame /Source /Private /Messaging /CommonMessagingSubsystem.cpp
| // Copyright Epic Games, Inc. All Rights Reserved. | |
| class FSubsystemCollectionBase; | |
| class UClass; | |
| void UCommonMessagingSubsystem::Initialize(FSubsystemCollectionBase& Collection) | |
| { | |
| Super::Initialize(Collection); | |
| } | |
| void UCommonMessagingSubsystem::Deinitialize() | |
| { | |
| Super::Deinitialize(); | |
| } | |
| bool UCommonMessagingSubsystem::ShouldCreateSubsystem(UObject* Outer) const | |
| { | |
| UGameInstance* GameInstance = CastChecked<ULocalPlayer>(Outer)->GetGameInstance(); | |
| if (GameInstance && !GameInstance->IsDedicatedServerInstance()) | |
| { | |
| TArray<UClass*> ChildClasses; | |
| GetDerivedClasses(GetClass(), ChildClasses, false); | |
| // Only create an instance if there is no override implementation defined elsewhere | |
| return ChildClasses.Num() == 0; | |
| } | |
| return false; | |
| } | |
| void UCommonMessagingSubsystem::ShowConfirmation(UCommonGameDialogDescriptor* DialogDescriptor, FCommonMessagingResultDelegate ResultCallback) | |
| { | |
| } | |
| void UCommonMessagingSubsystem::ShowError(UCommonGameDialogDescriptor* DialogDescriptor, FCommonMessagingResultDelegate ResultCallback) | |
| { | |
| } | |