9 lines
No EOL
207 B
C#
9 lines
No EOL
207 B
C#
using WingsEmu.Game.Characters;
|
|
using WingsEmu.Game.Warehouse;
|
|
|
|
namespace WingsEmu.Plugins.BasicImplementations.Warehouse;
|
|
|
|
public interface IWarehouseFactory
|
|
{
|
|
IWarehouse Create(IPlayerEntity entity);
|
|
} |