6 lines
No EOL
172 B
C#
6 lines
No EOL
172 B
C#
namespace WingsEmu.Plugins.BasicImplementations.Factories;
|
|
|
|
public interface IGameObjectFactory<out TGameObject, in TDto>
|
|
{
|
|
TGameObject CreateGameObject(TDto dto);
|
|
} |