GateDrawer now handles open-close properly

Meow.
This commit is contained in:
ericnerdo 2016-05-13 15:17:39 +02:00
parent e64e18233c
commit cc73a671f5
1 changed files with 3 additions and 3 deletions

View File

@ -6,16 +6,16 @@ public class GateDrawer extends AbstractDrawer {
Gate gate;
public GateDrawer(Gate g) throws IOException {
super("ClosedGate.png");
super("Gate.png");
gate = g;
}
@Override
public void draw() throws IOException {
if(gate.isOpen())
changeImage("Field.png"); //TODO picture for open gate.
changeImage("OpenGate.png");
else
changeImage("ClosedGate.png");
changeImage("Gate.png");
}
@Override