Some code cleanup and API changes
This commit is contained in:
@@ -3,6 +3,10 @@ package com.hypherionmc.craterlib.api.event.client;
|
||||
import com.hypherionmc.craterlib.core.event.CraterEvent;
|
||||
import net.minecraft.client.multiplayer.ClientLevel;
|
||||
|
||||
/**
|
||||
* @author HypherionSA
|
||||
* Cross Modloader Client Tick Event.
|
||||
*/
|
||||
public class CraterClientTickEvent extends CraterEvent {
|
||||
|
||||
private final ClientLevel level;
|
||||
|
@@ -4,12 +4,12 @@ import com.hypherionmc.craterlib.core.event.CraterEvent;
|
||||
import net.minecraft.client.Minecraft;
|
||||
import net.minecraft.client.Options;
|
||||
|
||||
public class EarlyInitEvent extends CraterEvent {
|
||||
public class LateInitEvent extends CraterEvent {
|
||||
|
||||
private final Minecraft minecraft;
|
||||
private final Options options;
|
||||
|
||||
public EarlyInitEvent(Minecraft minecraft, Options options) {
|
||||
public LateInitEvent(Minecraft minecraft, Options options) {
|
||||
this.minecraft = minecraft;
|
||||
this.options = options;
|
||||
}
|
Reference in New Issue
Block a user