Files
UnrealEngine/Engine/Source/Runtime/PropertyPath/Private/PropertyPathModule.cpp
2025-05-18 13:04:45 +08:00

15 lines
383 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "CoreMinimal.h"
#include "Modules/ModuleInterface.h"
#include "Modules/ModuleManager.h"
class FPropertyPathModule : public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override {}
virtual void ShutdownModule() override {}
};
IMPLEMENT_MODULE(FPropertyPathModule, PropertyPath)