InfoPanel.java 237 B

1234567891011121314151617
  1. package model.objects;
  2. import java.awt.Graphics2D;
  3. public class InfoPanel {
  4. private int x, y;
  5. public InfoPanel(int x, int y){
  6. this.x = x;
  7. this.y = y;
  8. }
  9. public void draw(Graphics2D g2){
  10. g2.drawRect(x, y, 256, 1024);
  11. }
  12. }