Files
UnrealEngineUWP/Engine/Source/Runtime/PropertyPath/Private/PropertyPathModule.cpp
projectgheist 27ae5afdcb PR #4726: Update copyright notices to 2018. (Contributed by projectgheist)
#rb none
#lockdown Nick.Penwarden

[CL 4070389 by Ben Marsh in Main branch]
2018-05-14 07:48:19 -04:00

15 lines
393 B
C++

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