Basically the result of the Delombok function, except we use IntelliJ's equals, hashCode and toString and don't re-organize imports (cause that breaks the preprocessor) and a bunch of manual cleanup was necessary (and half the classes weren't even converted).
21 lines
600 B
Java
21 lines
600 B
Java
//#if FABRIC<=0
|
|
//$$ package com.replaymod.replay.events;
|
|
//$$
|
|
//$$ import com.replaymod.replay.camera.CameraEntity;
|
|
//$$ import net.minecraftforge.eventbus.api.Cancelable;
|
|
//$$ import net.minecraftforge.eventbus.api.Event;
|
|
//$$
|
|
//$$ @Cancelable
|
|
//$$ public class ReplayChatMessageEvent extends Event {
|
|
//$$ private final CameraEntity cameraEntity;
|
|
//$$
|
|
//$$ public ReplayChatMessageEvent(CameraEntity cameraEntity) {
|
|
//$$ this.cameraEntity = cameraEntity;
|
|
//$$ }
|
|
//$$
|
|
//$$ public CameraEntity getCameraEntity() {
|
|
//$$ return cameraEntity;
|
|
//$$ }
|
|
//$$ }
|
|
//#endif
|