customcursor: add skill specs as a cursor (#1330)

* customcursor: add skill specs as a cursor

* customcursor: better cursor icon

thanks to Ganom
This commit is contained in:
Justin
2019-08-15 11:10:47 +10:00
committed by Ganom
parent 5c6d25f151
commit a3c3b9edf6
2 changed files with 2 additions and 1 deletions

View File

@@ -41,7 +41,8 @@ public enum CustomCursor
BANDOS_GODSWORD("Bandos Godsword", "cursor-bandos-godsword.png"),
MOUSE("Mouse", "cursor-mouse.png"),
SARADOMIN_GODSWORD("Saradomin Godsword", "cursor-saradomin-godsword.png"),
ZAMORAK_GODSWORD("Zamorak Godsword", "cursor-zamorak-godsword.png");
ZAMORAK_GODSWORD("Zamorak Godsword", "cursor-zamorak-godsword.png"),
SKILL_SPECS("Skill Specs", "cursor-skill-specs.png");
private final String name;
@Getter(AccessLevel.PUBLIC)