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