blob: 8dc7df4d876b5731e367d5772f4ba68aa7bd9855 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
package at.hannibal2.skyhanni.config.features.fishing;
import at.hannibal2.skyhanni.config.FeatureToggle;
import at.hannibal2.skyhanni.config.core.config.Position;
import com.google.gson.annotations.Expose;
import io.github.notenoughupdates.moulconfig.annotations.ConfigEditorBoolean;
import io.github.notenoughupdates.moulconfig.annotations.ConfigLink;
import io.github.notenoughupdates.moulconfig.annotations.ConfigOption;
public class FishingProfitTrackerConfig {
@Expose
@ConfigOption(name = "Enabled", desc = "Count all items you pick up while fishing.")
@ConfigEditorBoolean
@FeatureToggle
public boolean enabled = false;
@Expose
@ConfigLink(owner = FishingProfitTrackerConfig.class, field = "enabled")
public Position position = new Position(20, 20, false, true);
@Expose
@ConfigOption(name = "Show When Pickup", desc = "Show the fishing tracker for a couple of seconds after catching something even while moving.")
@ConfigEditorBoolean
public boolean showWhenPickup = true;
}
|