21 lines
518 B
C++
21 lines
518 B
C++
// Copyright 2017-2020 David Romanski(Socke). All Rights Reserved.
|
|
|
|
#include "WebCommunication.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "FWebCommunicationModule"
|
|
|
|
void FWebCommunicationModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FWebCommunicationModule::ShutdownModule()
|
|
{
|
|
// This function may be called during shutdown to clean up your module. For modules that support dynamic reloading,
|
|
// we call this function before unloading the module.
|
|
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|
|
IMPLEMENT_MODULE(FWebCommunicationModule, WebCommunication) |