milimoe 7b4a655ff4
添加CharacterMode,SkillMode,ItemMode类和其它杂项 (#64)
* 添加CharacterMode,SkillMode,ItemMode

* 添加默认地图属性

* 添加CharacterMode, SkillMode, ItemMode的Loader方法,优化构造函数

* 添加和优化Equals方法

* 删除Symbol
2023-11-30 00:27:49 +08:00

14 lines
368 B
C#

using Milimoe.FunGame.Core.Library.Constant;
namespace Milimoe.FunGame.Core.Entity
{
public abstract class Skill : BaseEntity
{
public string Describe { get; set; } = "";
public char Key { get; set; }
public bool Active { get; set; }
public bool Enable { get; set; }
public MagicType MagicType { get; set; }
}
}