19 lines
345 B
C++
19 lines
345 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
#include "GenericUISystem.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "FGenericUISystemModule"
|
|
|
|
void FGenericUISystemModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FGenericUISystemModule::ShutdownModule()
|
|
{
|
|
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|
|
IMPLEMENT_MODULE(FGenericUISystemModule, GenericUISystem) |