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