IEffectManager.cs 192 B

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