aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/java/ml/docilealligator/infinityforreddit/events/ChangeSwipeActionThresholdEvent.java
blob: 355edc59d7a16557e8c47b5efda1f2d5f4f9d310 (plain) (blame)
1
2
3
4
5
6
7
8
9
package ml.docilealligator.infinityforreddit.events;

public class ChangeSwipeActionThresholdEvent {
    public float swipeActionThreshold;

    public ChangeSwipeActionThresholdEvent(float swipeActionThreshold) {
        this.swipeActionThreshold = swipeActionThreshold;
    }
}