Add dropdown for font style for in-game overlays

This commit is contained in:
Reasel
2018-04-20 07:18:58 -07:00
committed by Adam
parent 0375702622
commit 19895c83a6
5 changed files with 82 additions and 10 deletions

View File

@@ -116,12 +116,12 @@ public interface RuneLiteConfig extends Config
}
@ConfigItem(
keyName = "useSmallFont",
name = "Small font in dynamic overlays",
description = "Toggles between small and regular RuneScape font for in-game overlays"
keyName = "fontType",
name = "Dynamic Overlay Font",
description = "Configures what font type is used for in-game overlays such as player name, ground items, etc."
)
default boolean useSmallFont()
default FontType fontType()
{
return true;
return FontType.SMALL;
}
}