using System.Collections;
using System.Collections.Generic;
using UnityEngine;
///
/// 护甲类型。
///
public enum ArmorType {
/// 布甲
ClothArmor,
/// 轻甲
LightArmor,
/// 中甲
MediumArmor,
/// 重甲
HeavyArmor,
}
///
/// 护甲 - 数据
///
public class DataArmor : DataEquipment {
/// 护甲类型
public ArmorType armorType;
}