cicaprojekt/cicaprojekt/Drawer.java

13 lines
227 B
Java
Raw Normal View History

2016-05-07 11:34:26 +00:00
package cicaprojekt;
import java.awt.image.BufferedImage;
2016-05-07 13:07:23 +00:00
import java.io.IOException;
public interface Drawer {
2016-05-07 11:34:26 +00:00
void draw() throws IOException;
int getTileX();
int getTileY();
BufferedImage getImage();
2016-05-07 11:34:26 +00:00
}