Added Foundry Points

This commit is contained in:
Robin Davidsson
2022-07-12 00:43:33 +02:00
parent fbd80428b0
commit 4067c1a9e3
4 changed files with 88 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ import net.runelite.client.config.ConfigSection;
public interface EasyGiantsFoundryConfig extends Config {
String GROUP = "easygiantsfoundry";
String SOUND_ID = "soundID";
String POINTS_KEY = "easygiantsfoundrypoints";
@ConfigSection(
name = "Notifications",
@@ -219,4 +220,16 @@ public interface EasyGiantsFoundryConfig extends Config {
default boolean drawHeatLeft() {
return true;
}
@ConfigItem(
keyName = "shopPoints",
name = "Shop points",
description = "Toggle for shop points",
position = 5,
section = infoPanelList
)
default boolean drawShopPoints()
{
return false;
}
}