This commit is contained in:
MuHua-123
2025-07-19 17:50:04 +08:00
parent d4574f4bd7
commit 2b349081e2
24 changed files with 1247 additions and 204 deletions
@@ -0,0 +1,24 @@
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
/// <summary>
/// 护甲类型。
/// </summary>
public enum ArmorType {
/// <summary> 布甲 </summary>
ClothArmor,
/// <summary> 轻甲 </summary>
LightArmor,
/// <summary> 中甲 </summary>
MediumArmor,
/// <summary> 重甲 </summary>
HeavyArmor,
}
/// <summary>
/// 护甲 - 数据
/// </summary>
public class DataArmor : DataEquipment {
/// <summary> 护甲类型 </summary>
public ArmorType armorType;
}