IEffectManager.cs 220 B

1234567891011
  1. namespace MeidoPhotoStudio.Plugin
  2. {
  3. public interface IEffectManager : IManager
  4. {
  5. bool Ready { get; }
  6. bool Active { get; }
  7. void SetEffectActive(bool active);
  8. void Reset();
  9. }
  10. }