7 lines
142 B
C#
7 lines
142 B
C#
namespace CringeBootstrap.Abstractions;
|
|
|
|
public interface ICorePlugin : IDisposable
|
|
{
|
|
void Initialize(string[] args);
|
|
void Run();
|
|
} |