using Milimoe.FunGame.Core.Entity; using Milimoe.FunGame.Core.Interface.Base; namespace Milimoe.FunGame.Core.Api.Factory { internal class ItemFactory : IFactory { public Type EntityType => typeof(Item); public Item Create() { return new(); } } }