using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace IPA
|
|
{
|
|
/// <summary>
|
|
/// An enhanced version of a standard BeatSaber plugin.
|
|
/// </summary>
|
|
public interface IEnhancedBeatSaberPlugin : IBeatSaberPlugin, IGenericEnhancedPlugin
|
|
{
|
|
}
|
|
}
|