Files
UnrealEngineUWP/Engine/Source/Developer/SessionMessages/Private/SessionMessagesModule.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

27 lines
478 B
C++

// Copyright 1998-2014 Epic Games, Inc. All Rights Reserved.
#include "SessionMessagesPrivatePCH.h"
/**
* Implements the SessionMessages module.
*/
class FSessionMessagesModule
: public IModuleInterface
{
public:
// IModuleInterface interface
virtual void StartupModule( ) override { }
virtual void ShutdownModule( ) override { }
virtual bool SupportsDynamicReloading( ) override
{
return true;
}
};
IMPLEMENT_MODULE(FSessionMessagesModule, SessionMessages);