skunkworks/com/danitheskunk/skunkworks/GLTexture.java

15 lines
242 B
Java

package com.danitheskunk.skunkworks;
public class GLTexture implements ITexture {
private Recti texArea;
GLTexture(Recti texArea) {
this.texArea = texArea;
}
//setters
void setTexArea(Recti texArea) {
this.texArea = texArea;
}
}