Files
2025-05-18 13:04:45 +08:00

15 lines
317 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SlateScriptingCommandsModule.h"
#include "Modules/ModuleManager.h"
void FSlateScriptingCommandsModule::StartupModule()
{
}
void FSlateScriptingCommandsModule::ShutdownModule()
{
}
IMPLEMENT_MODULE(FSlateScriptingCommandsModule, SlateScriptingCommands)