Final(?) logo sprites, removed drawing of overlay

This commit is contained in:
Anuken
2017-09-20 18:27:23 -04:00
parent 8b22ef2691
commit d3b613feb2
10 changed files with 79 additions and 86 deletions

View File

@@ -201,16 +201,6 @@ public class Renderer{
}
}
public static void renderOverlay(){
Tile tile = World.cursorTile();
if(tile != null && tile.block() != Blocks.air){
tile.block().drawOverlay(tile);
}
}
public static void drawHealth(float x, float y, float health, float maxhealth){
drawBar(Color.RED, x, y, health/maxhealth);
}