mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-22 03:59:35 +08:00

* 添加CharacterMode,SkillMode,ItemMode * 添加默认地图属性 * 添加CharacterMode, SkillMode, ItemMode的Loader方法,优化构造函数 * 添加和优化Equals方法 * 删除Symbol
14 lines
368 B
C#
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; }
|
|
}
|
|
}
|