blob: 30a3cef8d54e9654415333510b508cb3c702225c (
plain) (
tree)
|
|
package ml.docilealligator.infinityforreddit.events;
public class ChangeEasierToWatchInFullScreenEvent {
public boolean easierToWatchInFullScreen;
public ChangeEasierToWatchInFullScreenEvent(boolean easierToWatchInFullScreen) {
this.easierToWatchInFullScreen = easierToWatchInFullScreen;
}
}
|