Exemplo n.º 1
0
 public void drawImage(Texture image, int xPos, int yPos, IntLoc offset, int size) {
   batch.draw(image, xPos + offset.getX(), yPos + offset.getY(), size, size);
 }
Exemplo n.º 2
0
 public void drawText(String text, int x, int y, IntLoc offset) {
   drawFont.draw(batch, text, x + offset.getX(), y + offset.getY());
 }