You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
29 lines
946 B
C++
29 lines
946 B
C++
|
|
// Copyright Epic Games, Inc. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#include "GameplayInteractionsModule.h"
|
|||
|
|
#include "Modules/ModuleManager.h"
|
|||
|
|
|
|||
|
|
|
|||
|
|
//----------------------------------------------------------------------//
|
|||
|
|
// IGameplayInteractionsModule
|
|||
|
|
//----------------------------------------------------------------------//
|
|||
|
|
IGameplayInteractionsModule& IGameplayInteractionsModule::Get()
|
|||
|
|
{
|
|||
|
|
return FModuleManager::LoadModuleChecked<IGameplayInteractionsModule>("GameplayInteractionsModule");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
bool IGameplayInteractionsModule::IsAvailable()
|
|||
|
|
{
|
|||
|
|
return FModuleManager::Get().IsModuleLoaded("GameplayInteractionsModule");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
|
|||
|
|
//----------------------------------------------------------------------//
|
|||
|
|
// FGameplayInteractionsModule
|
|||
|
|
//----------------------------------------------------------------------//
|
|||
|
|
class FGameplayInteractionsModule : public IGameplayInteractionsModule
|
|||
|
|
{
|
|||
|
|
};
|
|||
|
|
|
|||
|
|
IMPLEMENT_MODULE(FGameplayInteractionsModule, GameplayInteractionsModule)
|