Skip to content

Commit

Permalink
Fix to health bar stamping. Merge didn't work because of... reasons.
Browse files Browse the repository at this point in the history
  • Loading branch information
dwm10005 committed Apr 17, 2015
1 parent 5fe7d33 commit 0ad026a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/MockGui.java
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ public void paint(Graphics g) {
drawPlayerHealth(g);
}
public void drawGrid(int x, int y, int gridSize, Graphics g) {
g.setColor(new Color(99, 209, 62));
g.fillRect(0, 0, 32*20, 32*20);
g.setColor(Color.BLACK);
int i = 0;
while (i < x-gridSize) {
Expand Down

0 comments on commit 0ad026a

Please sign in to comment.