File size: 935 Bytes
7fd553e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | // Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "Subsystems/EngineSubsystem.h"
#include "LyraExperienceManager.generated.h"
/**
* Manager for experiences - primarily for arbitration between multiple PIE sessions
*/
UCLASS(MinimalAPI)
class ULyraExperienceManager : public UEngineSubsystem
{
GENERATED_BODY()
public:
#if WITH_EDITOR
LYRAGAME_API void OnPlayInEditorBegun();
static void NotifyOfPluginActivation(const FString PluginURL);
static bool RequestToDeactivatePlugin(const FString PluginURL);
#else
static void NotifyOfPluginActivation(const FString PluginURL) {}
static bool RequestToDeactivatePlugin(const FString PluginURL) { return true; }
#endif
private:
// The map of requests to active count for a given game feature plugin
// (to allow first in, last out activation management during PIE)
TMap<FString, int32> GameFeaturePluginRequestCountMap;
};
|