Update
This commit is contained in:
28
Source/FLESHEditor/Public/FLESHEditorModule.h
Normal file
28
Source/FLESHEditor/Public/FLESHEditorModule.h
Normal file
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "Modules/ModuleManager.h"
|
||||
|
||||
/**
|
||||
* FLESH Editor Module - Editor tools for the Fully Locational Evisceration System for Humanoids
|
||||
*/
|
||||
class FFLESHEditorModule : public IModuleInterface
|
||||
{
|
||||
public:
|
||||
/** IModuleInterface implementation */
|
||||
virtual void StartupModule() override;
|
||||
virtual void ShutdownModule() override;
|
||||
|
||||
/** Singleton getter */
|
||||
static FFLESHEditorModule& Get()
|
||||
{
|
||||
return FModuleManager::LoadModuleChecked<FFLESHEditorModule>("FLESHEditor");
|
||||
}
|
||||
|
||||
/** Open FLESH Editor */
|
||||
void OpenFLESHEditor();
|
||||
|
||||
private:
|
||||
/** Plugin command list */
|
||||
TSharedPtr<class FUICommandList> PluginCommands;
|
||||
};
|
Reference in New Issue
Block a user