mouseDragged event

This commit is contained in:
yugecin
2017-01-18 21:48:27 +01:00
parent c4560ae9f1
commit f214841359
5 changed files with 23 additions and 1 deletions

View File

@@ -386,7 +386,9 @@ public class DisplayContainer implements ErrorDumpable, KeyListener, MouseListen
public void mouseMoved(int oldx, int oldy, int newx, int newy) { }
@Override
public void mouseDragged(int oldx, int oldy, int newx, int newy) { }
public void mouseDragged(int oldx, int oldy, int newx, int newy) {
state.mouseDragged(oldx, oldy, newx, newy);
}
@Override
public void setInput(Input input) { }