chore: Added Initial Engine Code
This commit is contained in:
6
Engine.Core/Factory/Abstract/IFactory.cs
Normal file
6
Engine.Core/Factory/Abstract/IFactory.cs
Normal file
@@ -0,0 +1,6 @@
|
||||
namespace Syntriax.Engine.Core.Factory.Abstract;
|
||||
|
||||
public interface IFactory<TInterface> where TInterface : class
|
||||
{
|
||||
T Get<T>(params object?[]? args) where T : class, TInterface;
|
||||
}
|
Reference in New Issue
Block a user