
com.ctreber.acearth.renderer.RenderTarget Maven / Gradle / Ivy
package com.ctreber.acearth.renderer;
import java.awt.Color;
/**
* .
*
*
* © 2002 Christian Treber, [email protected]
*
* @author Christian Treber, [email protected]
*
*/
public interface RenderTarget {
public void setPixel(int pX, int pY, int pA, int pR, int pG, int pB);
public void setPixel(int pX, int pY, Color pColor);
public int getImageWidth();
public int getImageHeight();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy