using Yw.WinFrmUI.Bimface; namespace HStation.WinFrmUI { /// /// 水流动画视图 /// public interface ISimulationFlowEffectView { /// /// 加载水流动画 /// Task LoadFlowEffect(List items); /// /// 卸载水流动画 /// Task UnloadFlowEffect(); /// /// 更新水流动画 /// Task UpdateFlowEffect(LogicFlowEffect item); } }