19 lines
478 B
Java
19 lines
478 B
Java
|
package src;
|
||
|
|
||
|
import javax.swing.*;
|
||
|
|
||
|
public class FormBoat {
|
||
|
JPanel PanelWrapper;
|
||
|
private JPanel PictureBox;
|
||
|
private JToolBar StatusStrip;
|
||
|
private JLabel StatusStripLabelSpeed;
|
||
|
private JLabel StatusStripLabelWeight;
|
||
|
private JLabel StatusStripLabelColor;
|
||
|
private JButton ButtonCreate;
|
||
|
private JPanel PanelButtonsMove;
|
||
|
private JButton ButtonDown;
|
||
|
private JButton ButtonUp;
|
||
|
private JButton ButtonLeft;
|
||
|
private JButton ButtonRight;
|
||
|
}
|