IManager.cs 131 B

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