第一次提交

This commit is contained in:
不明不惑
2026-03-03 01:23:02 +08:00
commit 3e434877e8
1053 changed files with 102411 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
// 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;
};