Files
MuHua-UIElements/Assets/ModuleCore/ModuleEquipment/Runtime/Equipment/Equipment.cs
T
MuHua-123 a18bea561a 1
2025-09-29 17:58:53 +08:00

13 lines
350 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 装备
/// </summary>
public class Equipment : InventoryItem {
/// <summary> 装备类型 (类型1/类型2 </summary>
public string type;
/// <summary> 词缀列表 </summary>
public List<EquipmentAffix> affixes = new List<EquipmentAffix>();
}