You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
- 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]
29 lines
616 B
C++
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;
|
|
};
|