Files
cicaprojekt/cicaprojekt/Drawer.java
2016-05-14 13:01:18 +02:00

13 lines
227 B
Java

package cicaprojekt;
import java.awt.image.BufferedImage;
import java.io.IOException;
public interface Drawer {
void draw() throws IOException;
int getTileX();
int getTileY();
BufferedImage getImage();
}