package at.hannibal2.skyhanni.config.features; import at.hannibal2.skyhanni.config.core.config.Position; import com.google.gson.annotations.Expose; import io.github.moulberry.moulconfig.annotations.ConfigEditorBoolean; import io.github.moulberry.moulconfig.annotations.ConfigOption; public class Bazaar { @Expose @ConfigOption(name = "Order Helper", desc = "Show visual hints inside the Bazaar Manage Order view when items are ready to pickup or outbid.") @ConfigEditorBoolean public boolean orderHelper = false; @Expose @ConfigOption(name = "Best Sell Method", desc = "Difference between sell instantly and sell offer.") @ConfigEditorBoolean public boolean bestSellMethod = false; @Expose public Position bestSellMethodPos = new Position(10, 10, false, true); @Expose @ConfigOption(name = "Cancelled Buy Order Clipboard", desc = "Saves missing items from cancelled buy orders to clipboard for faster re-entry.") @ConfigEditorBoolean public boolean cancelledBuyOrderClipboard = true; @Expose @ConfigOption(name = "Update Timer", desc = "A countdown timer for the next Bazaar data update.") @ConfigEditorBoolean public boolean updateTimer = false; @Expose public Position updateTimerPos = new Position(10, 10, false, true); }