package uk.co.flyingsquirrels; import org.newdawn.slick.Graphics; public interface SelfRenderable { void renderToScreen(int width, int height, Graphics g); void renderToWorld(Graphics g); }