Files
UnrealEngineUWP/Engine/Source/Editor/SwarmInterface/Private/SwarmInterfaceModule.cpp
Max Preussner e524e270f1 Core: Re-adding UClass dummy removals from CL# 2305058; this should now work properly
#CodeReview: dmitriy.dyomin, robert.manuszewski

[CL 2307110 by Max Preussner in Main branch]
2014-09-23 13:29:47 -04:00

21 lines
390 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "CoreUObject.h"
#include "ModuleManager.h"
#include "SwarmMessages.h"
class FSwarmInterfaceModule
: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule() override { }
virtual void ShutdownModule() override { }
};
IMPLEMENT_MODULE(FSwarmInterfaceModule, SwarmInterface);