19 lines
590 B
Java
19 lines
590 B
Java
|
package net.minecraft.util.profiling.jfr.event;
|
||
|
|
||
|
import jdk.jfr.Category;
|
||
|
import jdk.jfr.Event;
|
||
|
import jdk.jfr.EventType;
|
||
|
import jdk.jfr.Label;
|
||
|
import jdk.jfr.Name;
|
||
|
import jdk.jfr.StackTrace;
|
||
|
import net.minecraft.obfuscate.DontObfuscate;
|
||
|
|
||
|
@Name("minecraft.LoadWorld")
|
||
|
@Label("Create/Load World")
|
||
|
@Category({"Minecraft", "World Generation"})
|
||
|
@StackTrace(false)
|
||
|
@DontObfuscate
|
||
|
public class WorldLoadFinishedEvent extends Event {
|
||
|
public static final String EVENT_NAME = "minecraft.LoadWorld";
|
||
|
public static final EventType TYPE = EventType.getEventType(WorldLoadFinishedEvent.class);
|
||
|
}
|