Files
UnrealEngineUWP/Engine/Source/Editor/GameplayTasksEditor/Private/GameplayTasksEditorModule.cpp
Eric Newman f3569dae41 Fortnite dev to main merge up to cl # 2564489
Merging using UE4-Fortnite-To-UE4

[CL 2573959 by Eric Newman in Main branch]
2015-06-02 11:44:27 -04:00

25 lines
579 B
C++

// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
#include "GameplayTasksEditorPrivatePCH.h"
#include "GameplayTasksEditorModule.h"
//////////////////////////////////////////////////////////////////////////
// FCharacterAIModule
class FGameplayTasksEditorModule : public IGameplayTasksEditorModule
{
public:
virtual void StartupModule() override
{
check(GConfig);
}
virtual void ShutdownModule() override
{
}
};
//////////////////////////////////////////////////////////////////////////
IMPLEMENT_MODULE(FGameplayTasksEditorModule, GameplayTasksEditor);