aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/de/hysky/skyblocker/config/SkyblockerConfig.java
blob: 43c827c7095806458f42e19e4d374d78f869b5f7 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
package de.hysky.skyblocker.config;

import de.hysky.skyblocker.config.configs.*;

public class SkyblockerConfig {
	public int version = SkyblockerConfigManager.CONFIG_VERSION;

	public GeneralConfig general = new GeneralConfig();

	public UIAndVisualsConfig uiAndVisuals = new UIAndVisualsConfig();

	public HelperConfig helpers = new HelperConfig();

	public DungeonsConfig dungeons = new DungeonsConfig();

	public ForagingConfig foraging = new ForagingConfig();

	public CrimsonIsleConfig crimsonIsle = new CrimsonIsleConfig();

	public MiningConfig mining = new MiningConfig();

	public FarmingConfig farming = new FarmingConfig();

	public HuntingConfig hunting = new HuntingConfig();

	public OtherLocationsConfig otherLocations = new OtherLocationsConfig();

	public SlayersConfig slayers = new SlayersConfig();

	public ChatConfig chat = new ChatConfig();

	public QuickNavigationConfig quickNav = new QuickNavigationConfig();

	public EventNotificationsConfig eventNotifications = new EventNotificationsConfig();

	public MiscConfig misc = new MiscConfig();

	public DebugConfig debug = new DebugConfig();
}