public void draw(GLEx g, int x, int y, int sx, int sy, int width, int height) { draw(g, x, y, sx, sy, width, height, false); }
public void draw(GLEx g, int x, int y, int tx, int ty) { draw(g, x, y, tx, ty, defWidth, defHeight, false); }
public void draw(GLEx g, int x, int y, int layer) { draw(g, x, y, 0, 0, getWidth(), getHeight(), layer, false); }
public void draw(GLEx g, int tx, int ty) { draw(g, 0, 0, tx, ty); }