IManager.cs 162 B

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