skunkworks/com/danitheskunk/skunkworks/IRenderContext.java

8 lines
249 B
Java

package com.danitheskunk.skunkworks;
public interface IRenderContext {
void drawRectangle(Recti rect, Color color);
void drawTextureRectangle(Recti rect, ITexture texture);
void drawTextureRectangle(Recti rect, ITexture texture, Color color);
}