ModernUO/Projects/Scripts/Engines/BulkOrders/Books/IBOBEntry.cs
2020-04-26 00:16:02 -07:00

12 lines
No EOL
272 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();
}
}