Renamed GUIMenuButton class to MenuButton.

The class was originally named with the intent of adding many other GUI classes, but this never happened.

Signed-off-by: Jeffrey Han <itdelatrisu@gmail.com>
This commit is contained in:
Jeffrey Han
2014-12-30 00:00:58 -05:00
parent 9e69afac91
commit 2592faec44
11 changed files with 47 additions and 47 deletions

View File

@@ -54,7 +54,7 @@ public enum GameMod {
/**
* The button containing the mod image (displayed in Options screen).
*/
private GUIMenuButton button;
private MenuButton button;
/**
* Total number of mods.
@@ -106,7 +106,7 @@ public enum GameMod {
// create button
img.setAlpha(0.5f);
this.button = new GUIMenuButton(img, x + (offsetX * id), y);
this.button = new MenuButton(img, x + (offsetX * id), y);
this.button.setHoverScale(1.15f);
} catch (SlickException e) {
Log.error(String.format("Failed to initialize game mod '%s'.", this), e);