Syntriax.Engine/Engine.Core/Factory/Abstract/IFactory.cs

7 lines
183 B
C#

namespace Syntriax.Engine.Core.Factory.Abstract;
public interface IFactory<TInterface> where TInterface : class
{
T Get<T>(params object?[]? args) where T : class, TInterface;
}