30 lines
595 B
Java
30 lines
595 B
Java
package net.minecraft.src;
|
|
|
|
/**
|
|
* Compatibility class for ModLoader -- do not use
|
|
*
|
|
* @author cpw
|
|
*
|
|
*/
|
|
public class TradeEntry
|
|
{
|
|
public final int id;
|
|
public float chance;
|
|
public boolean buying;
|
|
public int min = 0;
|
|
public int max = 0;
|
|
|
|
public TradeEntry(int id, float chance, boolean buying, int min, int max)
|
|
{
|
|
this.id = id;
|
|
this.chance = chance;
|
|
this.buying = buying;
|
|
this.min = min;
|
|
this.max = max;
|
|
}
|
|
|
|
public TradeEntry(int id, float chance, boolean buying)
|
|
{
|
|
this(id, chance, buying, 0, 0);
|
|
}
|
|
}
|