Add and make use of Lombok Remove Mojang API Remove ZipFileUtils Remove StreamTools in favor of Apache IOUtils Keyframe should be abstract all derivatives final Replace clone in Keyframe with copy Move some constants from GuiReplaySetttings to GuiConstants
12 lines
210 B
Java
Executable File
12 lines
210 B
Java
Executable File
package eu.crushedpixel.replaymod.holders;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@AllArgsConstructor
|
|
public class PacketData {
|
|
private byte[] byteArray;
|
|
private int timestamp;
|
|
}
|