2026-07-15 19:17:47 +02:00
|
|
|
|
// Copyright (c) 2026 Unreal Directive. Licensed under the MIT License.
|
|
|
|
|
|
|
|
|
|
|
|
#include "DirectiveUtilitiesEditor.h"
|
2026-08-15 21:06:43 +02:00
|
|
|
|
#include "Tasks/DirectiveUtilEditorSlowTask.h"
|
2026-07-15 19:17:47 +02:00
|
|
|
|
|
|
|
|
|
|
void FDirectiveUtilitiesEditorModule::StartupModule()
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void FDirectiveUtilitiesEditorModule::ShutdownModule()
|
|
|
|
|
|
{
|
2026-08-15 21:06:43 +02:00
|
|
|
|
UDirectiveUtilEditorSlowTask::FinishActiveTask();
|
2026-07-15 19:17:47 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
IMPLEMENT_MODULE(FDirectiveUtilitiesEditorModule, DirectiveUtilitiesEditor)
|