HAxis sos

This commit is contained in:
guus
2018-08-11 16:46:35 +02:00
commit 510654f8a1
480 changed files with 54126 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
// Project Lab - NHTV IGAD
//////////////////////////////////////////
// Author: Yoshi van Belkom - 130118
//////////////////////////////////////////
// The Skill Tree Editor Module Interface.
//////////////////////////////////////////
#pragma once
#include "ModuleManager.h"
class ISkillTreeEditor : public IModuleInterface
{
public:
//Function to Get the Singleton of this Module if it's loaded.
static inline ISkillTreeEditor& Get()
{
return FModuleManager::LoadModuleChecked< ISkillTreeEditor >( "SkillTreeEditor" );
}
//Function to check if the Module is loaded.
static inline bool IsAvailable()
{
return FModuleManager::Get().IsModuleLoaded( "SkillTreeEditor" );
}
};