added stage notification and config

This commit is contained in:
Vanillj
2022-06-20 03:41:56 +02:00
parent f8a50862bd
commit 14066e0b9a
2 changed files with 73 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
package com.toofifty.easygiantsfoundry;
import net.runelite.client.config.Config;
import net.runelite.client.config.ConfigGroup;
import net.runelite.client.config.ConfigItem;
@ConfigGroup(EasyGiantsFoundryConfig.GROUP)
public interface EasyGiantsFoundryConfig extends Config {
String GROUP = "easygiantsfoundry";
@ConfigItem(
keyName = "giantsFoundryStageNotification",
name = "Enable stage notifications",
description = "Configures whether to notify you when you are about to finish a stage.",
position = 0
)
default boolean showGiantsFoundryNotifications()
{
return true;
}
}