Removed unnecessíry modifiers from Drawer interface

This commit is contained in:
Bokros Bálint 2016-05-14 13:01:18 +02:00
parent 7b15bb29d2
commit 6904ba4c89

View File

@ -5,8 +5,8 @@ import java.io.IOException;
public interface Drawer {
public void draw() throws IOException;
public int getTileX();
public int getTileY();
public BufferedImage getImage();
void draw() throws IOException;
int getTileX();
int getTileY();
BufferedImage getImage();
}