Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

18 lines
545 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "InteractionInterfaceModule.h"
#include "Modules/ModuleManager.h"
FInteractionInterfaceModule& FInteractionInterfaceModule::Get()
{
static FInteractionInterfaceModule& Singleton = FModuleManager::LoadModuleChecked<FInteractionInterfaceModule>("InteractionInterface");
return Singleton;
}
bool FInteractionInterfaceModule::IsAvailable()
{
return FModuleManager::Get().IsModuleLoaded("InteractionInterface");
}
IMPLEMENT_MODULE(FInteractionInterfaceModule, InteractableInterface)