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

@@ -100,6 +100,11 @@ public class EmptyRedState implements OpsuState {
return false;
}
@Override
public boolean mouseDragged(int oldx, int oldy, int newx, int newy) {
return false;
}
@Override
public void writeErrorDump(StringWriter dump) {
dump.append("> EmptyRedState dump\n");

View File

@@ -92,6 +92,11 @@ public class EmptyState implements OpsuState {
return false;
}
@Override
public boolean mouseDragged(int oldx, int oldy, int newx, int newy) {
return false;
}
@Override
public void writeErrorDump(StringWriter dump) {
dump.append("> EmptyState dump\n");