/** * Makes an image button which controls the Game Skin choice on the welcome page */ class GameSkinButton extends ImageButton{ GameSkinButton(String baseFile, String rollFile, String downFile, int x, int y, int onPressData ){ super(baseFile, rollFile, downFile, x, y, onPressData); } void action(){ StartGame(this.data); } }