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

7 lines
183 B
C#
Raw Permalink Normal View History

2023-11-23 22:07:49 +03:00
namespace Syntriax.Engine.Core.Factory.Abstract;
public interface IFactory<TInterface> where TInterface : class
{
T Get<T>(params object?[]? args) where T : class, TInterface;
}