mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2026-03-05 22:20:26 +00:00
14 lines
354 B
C#
14 lines
354 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
using Milimoe.FunGame.Core.Library.Constant;
|
|
|
|
namespace Milimoe.FunGame.Core.Model.PrefabricatedEntity
|
|
{
|
|
/// <summary>
|
|
/// 继承此类以表示勇气指令技能
|
|
/// </summary>
|
|
public abstract class CourageCommandSkill(Character? character = null) : Skill(SkillType.Skill, character)
|
|
{
|
|
|
|
}
|
|
}
|