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

14 lines
246 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "Modules/ModuleManager.h"
class FGoogleOboeModule : public IModuleInterface
{
public:
virtual void StartupModule() override
{
}
};
IMPLEMENT_MODULE(FGoogleOboeModule, GoogleOboe);