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.
|
- using Preparation.Utility;
- using GameClass.GameObj;
- using System.Collections.Generic;
-
- namespace GameClass.Skill
- {
- public interface ISkill
- {
- }
- public interface IPassiveSkill : ISkill
- {
- public void SkillEffect(Map map, Character player);
- }
- public interface IActiveSkill : ISkill
- {
- public int SkillCD { get; }
- public int DurationTime { get; } //技能持续时间
- public object ActiveSkillLock { get; }
- public bool SkillEffect(Map map, Character player);
- }
- }
|