You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
package sig;
|
|
|
|
import javax.swing.JPanel;
|
|
import java.awt.Graphics;
|
|
|
|
public class Panel extends JPanel{
|
|
|
|
Panel() {
|
|
this.setSize(Meteo.SCREEN_WIDTH,Meteo.SCREEN_HEIGHT);
|
|
}
|
|
|
|
public void paintComponent(Graphics g) {
|
|
super.paintComponent(g);
|
|
Meteo.b.drawBoard(g);
|
|
}
|
|
}
|
|
|