Files
UnrealEngine/Engine/Source/Runtime/PropertyPath/Private/PropertyPathModule.cpp
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05: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)