21 lines
840 B
Java
21 lines
840 B
Java
|
package net.minecraft.util.profiling.jfr.event;
|
||
|
|
||
|
import jdk.jfr.EventType;
|
||
|
import jdk.jfr.Label;
|
||
|
import jdk.jfr.Name;
|
||
|
import net.minecraft.obfuscate.DontObfuscate;
|
||
|
import net.minecraft.world.level.ChunkPos;
|
||
|
import net.minecraft.world.level.chunk.storage.RegionFileVersion;
|
||
|
import net.minecraft.world.level.chunk.storage.RegionStorageInfo;
|
||
|
|
||
|
@Name("minecraft.ChunkRegionRead")
|
||
|
@Label("Region File Read")
|
||
|
@DontObfuscate
|
||
|
public class ChunkRegionReadEvent extends ChunkRegionIoEvent {
|
||
|
public static final String EVENT_NAME = "minecraft.ChunkRegionRead";
|
||
|
public static final EventType TYPE = EventType.getEventType(ChunkRegionReadEvent.class);
|
||
|
|
||
|
public ChunkRegionReadEvent(RegionStorageInfo p_335975_, ChunkPos p_329415_, RegionFileVersion p_331229_, int p_335412_) {
|
||
|
super(p_335975_, p_329415_, p_331229_, p_335412_);
|
||
|
}
|
||
|
}
|