IEffectManager.cs 292 B

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