blob: fff0c8168c93221c60a1408c13efc327e3ba2945 (
plain) (
tree)
|
|
package ml.docilealligator.infinityforreddit.events;
public class ChangeFixedHeightPreviewInCardEvent {
public boolean fixedHeightPreviewInCard;
public ChangeFixedHeightPreviewInCardEvent(boolean fixedHeightPreviewInCard) {
this.fixedHeightPreviewInCard = fixedHeightPreviewInCard;
}
}
|