You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
614 B

6 years ago
6 years ago
6 years ago
6 years ago
  1. using System;
  2. // ReSharper disable CheckNamespace
  3. namespace IPA
  4. {
  5. /// <summary>
  6. /// Interface for Beat Saber plugins. Every class that implements this will be loaded if the DLL is placed at
  7. /// data/Managed/Plugins.
  8. /// </summary>
  9. [Obsolete("Use IPA.IPlugin instead")]
  10. public interface IBeatSaberPlugin : _IPlugin
  11. {
  12. /// <summary>
  13. /// Gets invoked when the application is started.
  14. ///
  15. /// THIS EVENT WILL NOT BE GUARANTEED TO FIRE. USE Init OR <see cref="IPlugin.OnEnable"/> INSTEAD.
  16. /// </summary>
  17. void OnApplicationStart();
  18. }
  19. }