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.

31 lines
686 B

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading.Tasks;
  6. namespace IPA
  7. {
  8. /// <inheritdoc cref="IPlugin" />
  9. /// <summary>
  10. /// An enhanced version of a standard BeatSaber plugin.
  11. /// </summary>
  12. public interface IEnhancedPlugin : IPlugin
  13. {
  14. /// <summary>
  15. /// Gets invoked on every graphic update.
  16. /// </summary>
  17. void OnUpdate();
  18. /// <summary>
  19. /// Gets invoked on ever physics update.
  20. /// </summary>
  21. void OnFixedUpdate();
  22. /// <summary>
  23. /// Called after Update.
  24. /// </summary>
  25. void OnLateUpdate();
  26. }
  27. }