Remove extraneous withLabels argument

This commit is contained in:
Max O'Cull 2019-10-11 20:00:00 -04:00
parent 120457916a
commit 23b7176d5a
No known key found for this signature in database
GPG Key ID: 30EB58207505DB17

View File

@ -72,7 +72,7 @@ public class MinimapRenderer implements Disposable{
region = new TextureRegion(texture);
}
public void drawEntities(float x, float y, float w, float h, boolean withLabels){
public void drawEntities(float x, float y, float w, float h){
updateUnitArray();
float sz = baseSize * zoom;
@ -101,10 +101,6 @@ public class MinimapRenderer implements Disposable{
Draw.color();
}
public void drawEntities(float x, float y, float w, float h){
drawEntities(x, y, w, h, false);
}
public TextureRegion getRegion(){
if(texture == null) return null;