IManager.cs 155 B

123456789
  1. namespace MeidoPhotoStudio.Plugin
  2. {
  3. public interface IManager
  4. {
  5. void Update();
  6. void Activate();
  7. void Deactivate();
  8. }
  9. }