Add always on top setting

This commit is contained in:
NotFoxtrot
2018-02-13 21:09:01 +01:00
committed by Adam
parent 08e95c7cd6
commit 9bc6e079ce
3 changed files with 23 additions and 0 deletions

View File

@@ -65,4 +65,14 @@ public interface RuneLiteConfig extends Config
{
return true;
}
@ConfigItem(
keyName = "gameAlwaysOnTop",
name = "Enable client always on top",
description = "The game will always be on the top of the screen"
)
default boolean gameAlwaysOnTop()
{
return false;
}
}