IEffectManager.cs 296 B

12345678910111213
  1. namespace COM3D2.MeidoPhotoStudio.Plugin
  2. {
  3. internal interface IEffectManager
  4. {
  5. bool IsReady { get; }
  6. bool IsActive { get; }
  7. void Activate();
  8. void Deactivate();
  9. void SetEffectActive(bool active);
  10. void Reset();
  11. void Update();
  12. }
  13. }