aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/cc/polyfrost/oneconfig/gui/GuiPause.java
blob: 344f7bb0ba9908c47982119a5c0c672f043b7839 (plain)
1
2
3
4
5
6
7
8
9
10
package cc.polyfrost.oneconfig.gui;

/**
 * Hack that allows GUIs to set whether the game should pause when the GUI is displayed without depending on
 * Minecraft itself.
 */
public interface GuiPause {
    @SuppressWarnings("unused")
    boolean doesGuiPauseGame();
}