Files
Ivazovsky/plugins/JPrinter/Source/JPrinter/Private/JPrinter.cpp
T
2021-11-29 21:09:12 +05:00

22 lines
625 B
C++

// Copyright 1998-2016 Epic Games, Inc. All Rights Reserved.
#include "JPrinter.h"
#include "JPrinterPrivatePCH.h"
#define LOCTEXT_NAMESPACE "FJPrinterModule"
void FJPrinterModule::StartupModule()
{
// This code will execute after your module is loaded into memory; the exact timing is specified in the .uplugin file per-module
}
void FJPrinterModule::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(FJPrinterModule, JPrinter)