第一次提交
This commit is contained in:
26
Plugins/GGS/Source/GenericUISystem/Public/GenericUISystem.h
Normal file
26
Plugins/GGS/Source/GenericUISystem/Public/GenericUISystem.h
Normal file
@@ -0,0 +1,26 @@
|
||||
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
||||
|
||||
#pragma once
|
||||
|
||||
#include "CoreMinimal.h"
|
||||
#include "Modules/ModuleManager.h"
|
||||
|
||||
/**
|
||||
* Module interface for the Generic UI System.
|
||||
* 通用UI系统的模块接口。
|
||||
*/
|
||||
class FGenericUISystemModule : public IModuleInterface
|
||||
{
|
||||
public:
|
||||
/**
|
||||
* Called when the module is loaded.
|
||||
* 模块加载时调用。
|
||||
*/
|
||||
virtual void StartupModule() override;
|
||||
|
||||
/**
|
||||
* Called when the module is unloaded.
|
||||
* 模块卸载时调用。
|
||||
*/
|
||||
virtual void ShutdownModule() override;
|
||||
};
|
||||
Reference in New Issue
Block a user