Files
UnrealEngineUWP/Engine/Source/Runtime/AdvancedWidgets/Public/AdvancedWidgetsModule.h
Rob Gay 139d304f45 - Create AdvancedWidgets module
- Move RadialSlider into it for shared use
- Add redirector for VirtualCam to avoid breaking existing content
- Fix RadialSlider value not updating if not bound

#jira UE-103908
#rb lauren.barnes
#fyi Matt.Kuhlenschmidt Vincent.Gauthier

[CL 14846513 by Rob Gay in ue5-main branch]
2020-12-03 14:26:45 -04:00

29 lines
616 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
/**
* Advanced Widgets module
*/
class ADVANCEDWIDGETS_API FAdvancedWidgetsModule : public IModuleInterface
{
public:
/**
* Called right after the plugin DLL has been loaded and the plugin object has been created
*/
virtual void StartupModule();
/**
* Called before the plugin is unloaded, right before the plugin object is destroyed.
*/
virtual void ShutdownModule();
/** Advanced Widgets app identifier string */
static const FName AdvancedWidgetsAppIdentifier;
};