import java.awt.*; import java.awt.event.*; import javax.swing.*; public class ButtonLeft extends ArrowButton { public ButtonLeft (Square square) { super (square, Square.ButtonAction.LEFT, Direction.LEFTARROW); } }