Files
UnrealEngineUWP/Engine/Source/Runtime/PropertyPath/Private/PropertyPathModule.cpp

15 lines
393 B
C++
Raw Normal View History

// Copyright 1998-2019 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)