blob: 105cfbc69c3745a61c5860d2509419725c7c28f0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package cc.polyfrost.oneconfig.events.event;
/**
* Called when the game is about to shut down.
* This can be used if anything needs to be done before the screen itself is fully closed
* or need to do something before another mod does something via {@link Runtime#addShutdownHook(Thread)}.
*
* @see ShutdownEvent
*/
public class PreShutdownEvent {
}
|