Files
UnrealEngine/Engine/Plugins/Animation/IKRig/Source/IKRigDeveloper/Private/IKRigDeveloper.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

19 lines
347 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "IKRigDeveloper.h"
#include "Modules/ModuleManager.h"
#define LOCTEXT_NAMESPACE "IKRigDeveloperModule"
IMPLEMENT_MODULE(FIKRigDeveloperModule, IKRigDeveloper)
void FIKRigDeveloperModule::StartupModule()
{
}
void FIKRigDeveloperModule::ShutdownModule()
{
}
#undef LOCTEXT_NAMESPACE