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.

11 lines
302 B

5 years ago
5 years ago
  1. // ReSharper disable CheckNamespace
  2. namespace IPA
  3. {
  4. /// <inheritdoc cref="IBeatSaberPlugin" />
  5. /// <summary>
  6. /// An enhanced version of a standard BeatSaber plugin.
  7. /// </summary>
  8. public interface IEnhancedBeatSaberPlugin : IBeatSaberPlugin, IGenericEnhancedPlugin
  9. {
  10. }
  11. }