102 lines
2.0 KiB
Java
102 lines
2.0 KiB
Java
/*
|
|
* Copyright 2013 Hannes Janetzek
|
|
*
|
|
* This file is part of the OpenScienceMap project (http://www.opensciencemap.org).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify it under the
|
|
* terms of the GNU Lesser General Public License as published by the Free Software
|
|
* Foundation, either version 3 of the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
|
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License along with
|
|
* this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.oscim.gdx;
|
|
|
|
import org.oscim.event.MotionEvent;
|
|
|
|
import com.badlogic.gdx.InputProcessor;
|
|
|
|
public class GdxMotionEvent extends MotionEvent implements InputProcessor {
|
|
|
|
@Override
|
|
public int getAction() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public float getX() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public float getY() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public float getX(int idx) {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public float getY(int idx) {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public int getPointerCount() {
|
|
return 0;
|
|
}
|
|
|
|
@Override
|
|
public long getTime() {
|
|
return 0;
|
|
}
|
|
|
|
// -------- InputProcessor ----------
|
|
@Override
|
|
public boolean keyDown(int keycode) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean keyUp(int keycode) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean keyTyped(char character) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean touchDown(int screenX, int screenY, int pointer, int button) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean touchUp(int screenX, int screenY, int pointer, int button) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean touchDragged(int screenX, int screenY, int pointer) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean mouseMoved(int screenX, int screenY) {
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean scrolled(int amount) {
|
|
return false;
|
|
}
|
|
|
|
}
|