You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
[FYI] Helge.Mathee #rb trivial #jira none #preflight 61af2db10e3f45382056d2d2 #ROBOMERGE-AUTHOR: mark.lintott #ROBOMERGE-SOURCE: CL 18393139 in //UE5/Release-5.0/... via CL 18393145 #ROBOMERGE-BOT: STARSHIP (Release-Engine-Staging -> Release-Engine-Test) (v896-18170469) [CL 18393153 by mark lintott in ue5-release-engine-test branch]
19 lines
379 B
C++
19 lines
379 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
class FAnimationWidgetsModule
|
|
: public IModuleInterface
|
|
{
|
|
public:
|
|
|
|
// IModuleInterface interface
|
|
|
|
virtual void StartupModule() override { }
|
|
virtual void ShutdownModule() override { }
|
|
};
|
|
|
|
|
|
IMPLEMENT_MODULE(FAnimationWidgetsModule, AnimationWidgets);
|