Files
se-launcher/CringeBootstrap.Abstractions/ICorePlugin.cs
2024-10-22 21:39:31 +07:00

7 lines
142 B
C#

namespace CringeBootstrap.Abstractions;
public interface ICorePlugin : IDisposable
{
void Initialize(string[] args);
void Run();
}