2024-04-12 12:42:41 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "Modules/ModuleInterface.h"
|
|
|
|
|
|
|
|
class GASAEDITOR_API FGasaEditorModule : public IModuleInterface
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
static bool IsAvailable() {
|
|
|
|
return FModuleManager::Get().IsModuleLoaded("GasaEditor");
|
|
|
|
}
|
|
|
|
|
|
|
|
static FGasaEditorModule& Get() {
|
|
|
|
return FModuleManager::LoadModuleChecked<FGasaEditorModule>("GasaEditor");
|
|
|
|
}
|
2024-10-21 22:39:40 -04:00
|
|
|
|
2024-04-12 12:42:41 -04:00
|
|
|
protected:
|
|
|
|
void StartupModule() override;
|
|
|
|
void ShutdownModule() override;
|
|
|
|
};
|