You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- namespace Preparation.Interface
- {
- public interface ISkill
- {
- }
- public interface IPassiveSkill : ISkill
- {
- }
- public interface IActiveSkill : ISkill
- {
- public int SkillCD { get; }
- public int DurationTime { get; } //技能持续时间
- public object ActiveSkillLock { get; }
- public bool IsBeingUsed { get; set; }
- }
- }
|