mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00
34 lines
912 B
C#
34 lines
912 B
C#
namespace Milimoe.FunGame.Core.Entity
|
|
{
|
|
/// <summary>
|
|
/// 角色的装备槽位
|
|
/// </summary>
|
|
public class EquipSlot()
|
|
{
|
|
/// <summary>
|
|
/// 魔法卡包
|
|
/// </summary>
|
|
public Item? MagicCardPack { get; internal set; } = null;
|
|
/// <summary>
|
|
/// 武器
|
|
/// </summary>
|
|
public Item? Weapon { get; internal set; } = null;
|
|
/// <summary>
|
|
/// 防具
|
|
/// </summary>
|
|
public Item? Armor { get; internal set; } = null;
|
|
/// <summary>
|
|
/// 鞋子
|
|
/// </summary>
|
|
public Item? Shoes { get; internal set; } = null;
|
|
/// <summary>
|
|
/// 饰品1
|
|
/// </summary>
|
|
public Item? Accessory1 { get; internal set; } = null;
|
|
/// <summary>
|
|
/// 饰品2
|
|
/// </summary>
|
|
public Item? Accessory2 { get; internal set; } = null;
|
|
}
|
|
}
|