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