Files
philippe lhardy b8cb7394cd Move (most) hardcoded defaults to MazeDefault
- harcoded values centralized
- IntegerField for JTextField containing numbers
- fix, can draw even if topleft position is not (0,0) ( ie if scrollbar were used )
2020-12-15 22:26:57 +01:00

15 lines
247 B
Java

package org.artisanlogiciel.games.maze.gui.component;
import javax.swing.*;
public class Panel
extends JPanel {
protected void addField(IntegerField pField)
{
add(pField.getLabel());
add(pField.getTextField());
}
}