1234567891011121314151617 |
- using FL.Battle.Components;
- using System;
- using XGame.Framework.Interfaces;
- namespace FL.Battle.Skills
- {
- /// <summary>
- /// 技能表现
- /// </summary>
- public interface ISkillActor : IReference
- {
- ISkillContext Context { get; set; }
- void Play(int skillId, ITarget target, Action<int, int> onCompleted);
- //void Stop();
- }
- }
|