Bump version. Add event for restore queue registration

This commit is contained in:
zontreck 2024-04-12 08:28:40 -07:00
parent 25aa4b2f9d
commit 20a756277d
6 changed files with 25 additions and 15 deletions

View file

@ -6,11 +6,7 @@ import java.util.List;
import dev.zontreck.libzontreck.networking.packets.IPacket;
import net.minecraftforge.eventbus.api.Event;
/**
* Used to register your packets with LibZontreck. Packets must extend IPacket and implement PacketSerializable. This is dispatched on both logical sides, and is considered a final event. It is not cancelable
* @see IPacket
*/
@Deprecated
public class RegisterPacketsEvent extends Event
{
public final List<IPacket> packets = new ArrayList<>();
}