add config
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
package net.runelite.client.plugins.dpscounter;
|
||||||
|
|
||||||
|
import net.runelite.client.config.ConfigGroup;
|
||||||
|
import net.runelite.client.config.ConfigItem;
|
||||||
|
|
||||||
|
@ConfigGroup("dpscounter")
|
||||||
|
public interface DpsConfig
|
||||||
|
{
|
||||||
|
@ConfigItem(
|
||||||
|
position = 0,
|
||||||
|
name = "Show Damage",
|
||||||
|
keyName = "showDamage",
|
||||||
|
description = "Show total damage instead of DPS"
|
||||||
|
)
|
||||||
|
default boolean showDamage()
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user