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