2
0
mirror of synced 2025-01-27 08:46:04 +00:00
cs-codex-dist-tests/Core/CoreInterface.cs
2023-09-13 08:55:04 +02:00

18 lines
361 B
C#

namespace Core
{
public sealed class CoreInterface
{
private readonly EntryPoint entryPoint;
internal CoreInterface(EntryPoint entryPoint)
{
this.entryPoint = entryPoint;
}
public T GetPlugin<T>() where T : IProjectPlugin
{
return entryPoint.GetPlugin<T>();
}
}
}