mirror of
https://github.com/Dark98/SliceBeam.git
synced 2026-07-04 16:49:03 +00:00
Long click to move; Boosty page on click before redirect
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
package ru.ytkab0bp.slicebeam.events;
|
||||
|
||||
import ru.ytkab0bp.eventbus.Event;
|
||||
|
||||
@Event
|
||||
public class LongClickTranslationEvent {
|
||||
public final double x;
|
||||
public final double y;
|
||||
public final boolean visual;
|
||||
|
||||
public LongClickTranslationEvent(double x, double y, boolean visual) {
|
||||
this.x = x;
|
||||
this.y = y;
|
||||
this.visual = visual;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user