blob: 00bd8d30fa4e93690d05e73bb33a33b545549730 [file] [log] [blame] [raw]
package forestry.api.mail;
import net.minecraft.item.ItemStack;
public class TradeStationInfo {
public final String moniker;
public final String owner;
public final ItemStack tradegood;
public final ItemStack[] required;
public final IPostalState state;
public TradeStationInfo(String moniker, String owner, ItemStack tradegood, ItemStack[] required, IPostalState state) {
this.moniker = moniker;
this.owner = owner;
this.tradegood = tradegood;
this.required = required;
this.state = state;
}
}