6th attempt at Meteos.
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.
 
 
meteo_engine/src/sig/Panel.java

16 lines
303 B

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);
}
}