15 lines
222 B
C#
15 lines
222 B
C#
using System.Text;
|
|
|
|
namespace AutoSaverPlugin.Contracts;
|
|
|
|
internal interface IAutoSaveManager
|
|
{
|
|
void Initialize(AutoSaverEditorPlugin plugin);
|
|
|
|
void Activate();
|
|
|
|
void Reactivate();
|
|
|
|
void Deactivate();
|
|
}
|