@Override
 public boolean dragged(BaseEntity entity, float x, float y, float offX, float offY) {
   return entity.contains(x, y);
 }
 @Override
 public boolean touchDown(BaseEntity entity, float x, float y) {
   return entity.contains(x, y);
 }
 @Override
 public boolean clicked(BaseEntity entity, float x, float y) {
   return entity.contains(x, y);
 }