You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#rb sara.schvartzman #jira UE-204843 #rnx [CL 31286549 by helge mathee in ue5-main branch]
27 lines
507 B
C++
27 lines
507 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
#include "Framework/Animation/AnimatedAttributeManager.h"
|
|
|
|
|
|
/**
|
|
* Implements the Slate module.
|
|
*/
|
|
class FSlateModule
|
|
: public IModuleInterface
|
|
{
|
|
virtual void StartupModule() override
|
|
{
|
|
FAnimatedAttributeManager::Get().SetupTick();
|
|
}
|
|
|
|
virtual void ShutdownModule() override
|
|
{
|
|
FAnimatedAttributeManager::Get().TeardownTick();
|
|
}
|
|
};
|
|
|
|
|
|
IMPLEMENT_MODULE(FSlateModule, Slate);
|