ModernUO/Projects/UOContent/Engines/Bulk Orders/Books/IBOBEntry.cs
Kamron Batman b4b1b0b122
fix(core): Converts more packets and switches to Moq (#415)
- [X] Switches testing to moq for mocking
- [X] Converts race changer packets
- [X] Renames some more folders and misc cleanup
2021-01-16 22:09:05 -08:00

12 lines
292 B
C#

namespace Server.Engines.BulkOrders
{
public interface IBOBEntry
{
bool RequireExceptional { get; }
BODType DeedType { get; }
BulkMaterialType Material { get; }
int AmountMax { get; }
int Price { get; set; }
Item Reconstruct();
}
}