You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-144847 #rb trivial #preflight 62228bcf2f7d78332e1c4548 [CL 19277106 by ben hoffman in ue5-main branch]
17 lines
395 B
C++
17 lines
395 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "InputBlueprintNodesModule.h"
|
|
|
|
#include "CoreMinimal.h"
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
#define LOCTEXT_NAMESPACE "InputBlueprintNodes"
|
|
|
|
class FInputBlueprintNodesModule : public IModuleInterface
|
|
{
|
|
};
|
|
|
|
IMPLEMENT_MODULE(FInputBlueprintNodesModule, InputBlueprintNodes)
|
|
|
|
#undef LOCTEXT_NAMESPACE |