18 lines
308 B
C++
18 lines
308 B
C++
#include "UnrealSharpBlueprint.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "FUnrealSharpBlueprintModule"
|
|
|
|
void FUnrealSharpBlueprintModule::StartupModule()
|
|
{
|
|
|
|
}
|
|
|
|
void FUnrealSharpBlueprintModule::ShutdownModule()
|
|
{
|
|
|
|
}
|
|
|
|
#undef LOCTEXT_NAMESPACE
|
|
|
|
IMPLEMENT_MODULE(FUnrealSharpBlueprintModule, UnrealSharpBlueprint)
|