namespace KumiScript.Renderer { public interface IDrawable { void Draw(int x, int y); int GetBitmapWidth(); int GetBitmapHeight(); int GetXOffset(); int GetYOffset(); } }