Drawer.draw() now throws IOException.

This commit is contained in:
ericnerdo 2016-05-07 15:07:23 +02:00
parent 9e37f114d0
commit 39a082c2aa
1 changed files with 3 additions and 1 deletions

View File

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