Files
PHY/Plugins/GGS/Source/GenericUISystem/Private/GenericUISystem.cpp
2026-03-03 01:23:02 +08:00

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)