9 lines
No EOL
254 B
C#
9 lines
No EOL
254 B
C#
using WingsEmu.Game.Characters;
|
|
using WingsEmu.Plugins.BasicImplementations.Warehouse;
|
|
|
|
namespace WingsEmu.Game.Warehouse;
|
|
|
|
public class WarehouseFactory : IWarehouseFactory
|
|
{
|
|
public IWarehouse Create(IPlayerEntity entity) => new Warehouse(entity);
|
|
} |