12 lines
No EOL
267 B
C#
12 lines
No EOL
267 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();
|
|
}
|
|
} |