aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gregtech/api/util/shutdown/ShutDownReason.java
blob: 47889583aa1a2aabcc3415938c0bb6babb4934d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
package gregtech.api.util.shutdown;

import gregtech.api.util.IMachineMessage;

public interface ShutDownReason extends IMachineMessage<ShutDownReason> {

    /**
     * @return Whether the reason is critical.
     */
    boolean wasCritical();
}