ProjectileRectangle rect = s.getRectangle();
g.drawImage(rect.getImage(), rect.xCoord(), rect.yCoord(), null);
}
}
for(int i = 0; i < model.getMap().getExplosions().size(); i++) {
Explosion e = model.getMap().getExplosions().get(i);
g.drawImage(e.getImage(), e.getLocation().col, e.getLocation().row, null);
}
if (won == true) {
Font font = new Font("Times New Roman", Font.BOLD, 28);
String jb = "Win!";
AttributedString att = new AttributedString(jb);