blob: fe3f8ef35343953aaf2030791565a34d08cbe024 (
plain) (
tree)
|
|
package ml.docilealligator.infinityforreddit.events;
public class ChangeSwipeActionEvent {
public int swipeLeftAction;
public int swipeRightAction;
public ChangeSwipeActionEvent(int swipeLeftAction, int swipeRightAction) {
this.swipeLeftAction = swipeLeftAction;
this.swipeRightAction = swipeRightAction;
}
}
|