Drawer.draw() now throws IOException.

This commit is contained in:
ericnerdo 2016-05-07 15:07:23 +02:00
parent 9e37f114d0
commit 39a082c2aa

View File

@ -1,8 +1,10 @@
package cicaprojekt; package cicaprojekt;
import java.io.IOException;
public interface Drawer { public interface Drawer {
public void draw(); public void draw() throws IOException;
public int getX(); public int getX();
public int getY(); public int getY();
} }