mirror of
https://github.com/Ed94/Cog.git
synced 2026-06-14 00:22:23 -07:00
16 lines
396 B
C++
16 lines
396 B
C++
|
|
#pragma once
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
class ICogDebugEditorModule : public IModuleInterface
|
|
{
|
|
|
|
public:
|
|
|
|
static inline ICogDebugEditorModule& Get() { return FModuleManager::LoadModuleChecked<ICogDebugEditorModule>("CogDebugEditor"); }
|
|
|
|
static inline bool IsAvailable() { return FModuleManager::Get().IsModuleLoaded("CogDebugEditor"); }
|
|
};
|