17 lines
408 B
C
17 lines
408 B
C
|
|
// Copyright 2019-Present LexLiu. All Rights Reserved.
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
|
|||
|
|
#include "Modules/ModuleInterface.h"
|
|||
|
|
#include "DetailCategoryBuilder.h"
|
|||
|
|
|
|||
|
|
DECLARE_LOG_CATEGORY_EXTERN(LGUIComponentVisualizer, Log, All);
|
|||
|
|
|
|||
|
|
class FLGUIComponentVisualizerModule : public IModuleInterface
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
|
|||
|
|
/** IModuleInterface implementation */
|
|||
|
|
virtual void StartupModule() override;
|
|||
|
|
virtual void ShutdownModule() override;
|
|||
|
|
};
|