mirror of
https://github.com/Jozufozu/Flywheel.git
synced 2025-01-10 22:36:06 +01:00
17 lines
347 B
Java
17 lines
347 B
Java
|
package com.jozufozu.flywheel.event;
|
||
|
|
||
|
import net.minecraft.client.world.ClientWorld;
|
||
|
import net.minecraftforge.eventbus.api.Event;
|
||
|
|
||
|
public class ReloadRenderersEvent extends Event {
|
||
|
private final ClientWorld world;
|
||
|
|
||
|
public ReloadRenderersEvent(ClientWorld world) {
|
||
|
this.world = world;
|
||
|
}
|
||
|
|
||
|
public ClientWorld getWorld() {
|
||
|
return world;
|
||
|
}
|
||
|
}
|