Exemplo n.º 1
0
 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);
 }
Exemplo n.º 2
0
 public void draw(GLEx g, int x, int y, int tx, int ty) {
   draw(g, x, y, tx, ty, defWidth, defHeight, false);
 }
Exemplo n.º 3
0
 public void draw(GLEx g, int x, int y, int layer) {
   draw(g, x, y, 0, 0, getWidth(), getHeight(), layer, false);
 }
Exemplo n.º 4
0
 public void draw(GLEx g, int tx, int ty) {
   draw(g, 0, 0, tx, ty);
 }