27 lines
731 B
C++
27 lines
731 B
C++
// Copyright 2025 https://yuewu.dev/en All Rights Reserved.
|
|
|
|
#pragma once
|
|
|
|
#include "Modules/ModuleManager.h"
|
|
|
|
/**
|
|
* Module class for the Generic Inventory System.
|
|
* 通用库存系统的模块类。
|
|
* @details Implements the module interface for initializing and shutting down the inventory system.
|
|
* @细节 实现模块接口以初始化和关闭库存系统。
|
|
*/
|
|
class FGenericInventorySystemModule : public IModuleInterface
|
|
{
|
|
public:
|
|
/**
|
|
* Called when the module is loaded into memory.
|
|
* 模块加载到内存时调用。
|
|
*/
|
|
virtual void StartupModule() override;
|
|
|
|
/**
|
|
* Called when the module is unloaded from memory.
|
|
* 模块从内存中卸载时调用。
|
|
*/
|
|
virtual void ShutdownModule() override;
|
|
}; |