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; } }