blob: c74fdbb4a55e35df53a4ca0763afdcefb8f2ae6f (
plain) (
blame)
1
2
3
4
5
6
7
|
package ml.docilealligator.infinityforreddit.customviews;
import androidx.annotation.Nullable;
public interface SwipeLockView {
void setSwipeLockInterface(@Nullable SwipeLockInterface swipeLockInterface);
}
|