import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ButtonRight extends ArrowButton { public ButtonRight (Square square) { super (square, Square.ButtonAction.RIGHT, Direction.RIGHTARROW); } }