namespace Milimoe.FunGame.Core.Interface.Base { public interface IFactory { public Type EntityType { get; } public T Create(); } }