mirror of
https://github.com/project-redbud/FunGame-Core.git
synced 2025-04-23 04:29:36 +08:00
16 lines
317 B
C#
16 lines
317 B
C#
using Milimoe.FunGame.Core.Entity;
|
|
using Milimoe.FunGame.Core.Interface.Base;
|
|
|
|
namespace Milimoe.FunGame.Core.Api.Factory
|
|
{
|
|
internal class SkillFactory : IFactory<Skill>
|
|
{
|
|
public Type EntityType => typeof(Skill);
|
|
|
|
public Skill Create()
|
|
{
|
|
return new();
|
|
}
|
|
}
|
|
}
|