Files
UnrealEngineUWP/Engine/Source/Runtime/PropertyPath/Private/PropertyPathModule.cpp
Lina Halper 77c8fc6d6c Copying //UE4/Dev-AnimPhys to Dev-Main (//UE4/Dev-Main)
#lockdown nick.penwarden
#fyi: James.Golding
#rb: none

[CL 4001436 by Lina Halper in Main branch]
2018-04-12 16:57:51 -04:00

15 lines
393 B
C++

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