blob: fff0c8168c93221c60a1408c13efc327e3ba2945 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
package ml.docilealligator.infinityforreddit.events;
public class ChangeFixedHeightPreviewInCardEvent {
public boolean fixedHeightPreviewInCard;
public ChangeFixedHeightPreviewInCardEvent(boolean fixedHeightPreviewInCard) {
this.fixedHeightPreviewInCard = fixedHeightPreviewInCard;
}
}
|