import java.awt.*; import javax.swing.*; /** * The control panel for commands that control a single square */ public class ControlSingle extends ControlPanel { ControlSingle (Model model) { add (new ButtonLeft (model)); add (new ButtonRight (model)); add (new ButtonBigger (model)); add (new ButtonSmaller (model)); } }