Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

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);