IEffectManager.cs 219 B

12345678910
  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. }