You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
408 B
21 lines
408 B
#include "SERIALCOMModule.h"
|
|
|
|
IMPLEMENT_MODULE(SERIALCOMModule, SERIALCOM);
|
|
|
|
#define LOCTEXT_NAMESPACE "SERIALCOM"
|
|
|
|
SERIALCOMModule::SERIALCOMModule()
|
|
{
|
|
}
|
|
|
|
void SERIALCOMModule::StartupModule()
|
|
{
|
|
// Startup LOG MSG
|
|
UE_LOG(SERIALCOMLog, Warning, TEXT("SERIALCOM: Log Started"));
|
|
}
|
|
|
|
void SERIALCOMModule::ShutdownModule()
|
|
{
|
|
// Shutdown LOG MSG
|
|
UE_LOG(SERIALCOMLog, Warning, TEXT("SERIALCOM: Log Ended"));
|
|
}
|