case NULL: break;
case DEAD:
for (int i = 0; i < 6; i++)
{
g.setLineWidth(9);
g.setColor(new Color(0,90,0)); //poison green
g.drawRect(x-death_rects_x[i], y-death_rects_y[i], 15+opt_dead/2, 15+opt_dead/2);
g.setColor(new Color(13,142,19)); //poison green
g.fillRect(x-death_rects_x[i], y-death_rects_y[i], 15+opt_dead/2, 15+opt_dead/2);
}
break;
default:
g.setLineWidth(6);
g.setColor(new Color(0,90,0)); //poison green
g.drawRect(x-width, y-height, width, height);
g.setColor(new Color(13,142,19)); //poison green
g.fillRect(x-width, y-height, width, height);
break;
}
}