1 package org.newdawn.slick; 2 3 /** 4 * Description of anything that can be drawn 5 * 6 * @author kevin 7 */ 8 interface Renderable { 9 10 /** 11 * Draw this artefact at the given location 12 * 13 * @param x The x coordinate to draw the artefact at 14 * @param y The y coordinate to draw the artefact at 15 */ 16 public void draw(float x, float y); 17 18 }