diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkClient.java b/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkClient.java
deleted file mode 100644
index d0f1d28c7..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkClient.java
+++ /dev/null
@@ -1,175 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network;
-
-import com.seibel.distanthorizons.core.logging.DhLoggerBuilder;
-import com.seibel.distanthorizons.core.network.messages.CloseMessage;
-import com.seibel.distanthorizons.core.network.messages.CloseReasonMessage;
-import com.seibel.distanthorizons.core.network.messages.HelloMessage;
-import com.seibel.distanthorizons.core.network.protocol.NetworkChannelInitializer;
-//import io.netty.bootstrap.Bootstrap;
-//import io.netty.channel.Channel;
-//import io.netty.channel.ChannelFuture;
-//import io.netty.channel.ChannelOption;
-//import io.netty.channel.EventLoopGroup;
-//import io.netty.channel.nio.NioEventLoopGroup;
-//import io.netty.channel.socket.nio.NioSocketChannel;
-import org.apache.logging.log4j.Logger;
-
-import java.net.InetSocketAddress;
-import java.util.concurrent.TimeUnit;
-
-public class NetworkClient //extends NetworkEventSource implements AutoCloseable
-{
-// private static final Logger LOGGER = DhLoggerBuilder.getLogger();
-//
-// private enum EConnectionState
-// {
-// OPEN,
-// RECONNECT,
-// RECONNECT_FORCE,
-// CLOSE_WAIT,
-// CLOSED
-// }
-//
-// private static final int FAILURE_RECONNECT_DELAY_SEC = 5;
-// private static final int FAILURE_RECONNECT_ATTEMPTS = 3;
-//
-// // TODO move to payload of some sort
-// private final InetSocketAddress address;
-//
-// private final EventLoopGroup workerGroup = new NioEventLoopGroup();
-// private final Bootstrap clientBootstrap = new Bootstrap()
-// .group(this.workerGroup)
-// .channel(NioSocketChannel.class)
-// .option(ChannelOption.SO_KEEPALIVE, true)
-// .handler(new NetworkChannelInitializer(this.messageHandler));
-//
-// private EConnectionState connectionState;
-// private Channel channel;
-// private int reconnectAttempts = FAILURE_RECONNECT_ATTEMPTS;
-//
-//
-//
-// public NetworkClient(String host, int port)
-// {
-// this.address = new InetSocketAddress(host, port);
-//
-// this.registerHandlers();
-// this.connect();
-// }
-//
-// private void registerHandlers()
-// {
-// this.registerHandler(HelloMessage.class, (helloMessage, channelContext) ->
-// {
-// LOGGER.info("Connected to server: "+channelContext.channel().remoteAddress());
-// });
-//
-// this.registerHandler(CloseReasonMessage.class, (closeReasonMessage, channelContext) ->
-// {
-// LOGGER.info(closeReasonMessage.reason);
-// this.connectionState = EConnectionState.CLOSE_WAIT;
-// });
-//
-// this.registerHandler(CloseMessage.class, (closeMessage, channelContext) ->
-// {
-// LOGGER.info("Disconnected from server: "+channelContext.channel().remoteAddress());
-// if (this.connectionState == EConnectionState.CLOSE_WAIT)
-// {
-// this.close();
-// }
-// });
-// }
-//
-// private void connect()
-// {
-// LOGGER.info("Connecting to server: "+this.address);
-// this.connectionState = EConnectionState.OPEN;
-//
-// // FIXME sometimes this causes the MC connection to crash
-// // this might happen if the URL can't be converted to a IP (IE UnknownHostException)
-// ChannelFuture connectFuture = this.clientBootstrap.connect(this.address);
-// connectFuture.addListener((ChannelFuture channelFuture) ->
-// {
-// if (!channelFuture.isSuccess())
-// {
-// LOGGER.warn("Connection failed: "+channelFuture.cause());
-// return;
-// }
-//
-// this.channel.writeAndFlush(new HelloMessage());
-// });
-//
-// this.channel = connectFuture.channel();
-// this. channel.closeFuture().addListener((ChannelFuture channelFuture) ->
-// {
-// switch (this.connectionState)
-// {
-// case OPEN:
-// this.reconnectAttempts--;
-// LOGGER.info("Reconnection attempts left: ["+this.reconnectAttempts+"] of ["+FAILURE_RECONNECT_ATTEMPTS+"].");
-// if (this.reconnectAttempts == 0)
-// {
-// this.connectionState = EConnectionState.CLOSE_WAIT;
-// return;
-// }
-//
-// this.connectionState = EConnectionState.RECONNECT;
-// this.workerGroup.schedule(this::connect, FAILURE_RECONNECT_DELAY_SEC, TimeUnit.SECONDS);
-// break;
-//
-// case RECONNECT_FORCE:
-// LOGGER.info("Reconnecting forcefully.");
-// this.reconnectAttempts = FAILURE_RECONNECT_ATTEMPTS;
-//
-// this.connectionState = EConnectionState.RECONNECT;
-// this.workerGroup.schedule(this::connect, 0, TimeUnit.SECONDS);
-// break;
-// }
-// });
-// }
-//
-// /** Kills the current connection, triggering auto-reconnection immediately. */
-// public void reconnect()
-// {
-// this.connectionState = EConnectionState.RECONNECT_FORCE;
-// this.channel.disconnect();
-// }
-//
-// @Override
-// public void close()
-// {
-// if (this.closeReason != null)
-// {
-// LOGGER.error(this.closeReason);
-// }
-//
-// if (this.connectionState == EConnectionState.CLOSED)
-// {
-// return;
-// }
-//
-// this.connectionState = EConnectionState.CLOSED;
-// this.workerGroup.shutdownGracefully().syncUninterruptibly();
-// this.channel.close().syncUninterruptibly();
-// }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkEventSource.java b/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkEventSource.java
deleted file mode 100644
index 42c14927b..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkEventSource.java
+++ /dev/null
@@ -1,82 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network;
-
-import com.seibel.distanthorizons.core.logging.DhLoggerBuilder;
-import com.seibel.distanthorizons.core.network.messages.AckMessage;
-import com.seibel.distanthorizons.core.network.messages.HelloMessage;
-import com.seibel.distanthorizons.core.network.protocol.INetworkMessage;
-import com.seibel.distanthorizons.core.network.protocol.MessageHandler;
-import com.seibel.distanthorizons.coreapi.ModInfo;
-//import io.netty.channel.ChannelHandlerContext;
-import org.apache.logging.log4j.Logger;
-
-import java.util.function.BiConsumer;
-import java.util.function.Consumer;
-
-public abstract class NetworkEventSource implements AutoCloseable
-{
- private static final Logger LOGGER = DhLoggerBuilder.getLogger();
-
- protected final MessageHandler messageHandler = new MessageHandler();
- protected String closeReason = null;
-
-
-
-// public NetworkEventSource()
-// {
-// this.registerHandler(HelloMessage.class, (helloMessage, channelContext) ->
-// {
-// if (helloMessage.version != ModInfo.PROTOCOL_VERSION)
-// {
-// try
-// {
-// String closeReason = "Ignoring message from channel ["+channelContext.name()+"], due to version mismatch. Expected version: ["+ModInfo.PROTOCOL_VERSION+"], received version: ["+helloMessage.version+"].";
-// LOGGER.info(closeReason);
-// this.close(closeReason);
-// }
-// catch (Exception e)
-// {
-// throw new RuntimeException(e);
-// }
-// }
-// });
-// }
-//
-// public void registerHandler(Class clazz, BiConsumer handler) { this.messageHandler.registerHandler(clazz, handler); }
-//
-// public void registerAckHandler(Class clazz, Consumer handler)
-// {
-// this.messageHandler.registerHandler(AckMessage.class, (ackMessage, channelContext) ->
-// {
-// if (ackMessage.messageType == clazz)
-// {
-// handler.accept(channelContext);
-// }
-// });
-// }
-//
-// public void close(String reason) throws Exception
-// {
-// this.closeReason = reason;
-// this.close();
-// }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkServer.java b/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkServer.java
deleted file mode 100644
index a9034a071..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/NetworkServer.java
+++ /dev/null
@@ -1,122 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network;
-
-import com.seibel.distanthorizons.core.logging.DhLoggerBuilder;
-import com.seibel.distanthorizons.core.network.messages.CloseReasonMessage;
-import com.seibel.distanthorizons.core.network.messages.CloseMessage;
-import com.seibel.distanthorizons.core.network.messages.HelloMessage;
-import com.seibel.distanthorizons.core.network.protocol.NetworkChannelInitializer;
-//import io.netty.bootstrap.ServerBootstrap;
-//import io.netty.channel.*;
-//import io.netty.channel.nio.NioEventLoopGroup;
-//import io.netty.channel.socket.nio.NioServerSocketChannel;
-//import io.netty.handler.logging.LogLevel;
-//import io.netty.handler.logging.LoggingHandler;
-import org.apache.logging.log4j.Logger;
-
-public class NetworkServer //extends NetworkEventSource implements AutoCloseable
-{
-// private static final Logger LOGGER = DhLoggerBuilder.getLogger();
-//
-// // TODO move to the config
-// private final int port;
-//
-// private final EventLoopGroup bossGroup = new NioEventLoopGroup(1);
-// private final EventLoopGroup workerGroup = new NioEventLoopGroup();
-// private Channel channel;
-// private boolean isClosed = false;
-//
-//
-//
-// public NetworkServer(int port)
-// {
-// this.port = port;
-//
-// LOGGER.info("Starting server on port "+port);
-// this.registerHandlers();
-// this.bind();
-// }
-//
-// private void registerHandlers()
-// {
-// this.registerHandler(HelloMessage.class, (helloMessage, channelContext) ->
-// {
-// LOGGER.info("Client connected: "+channelContext.channel().remoteAddress());
-// channelContext.channel().writeAndFlush(new HelloMessage());
-// });
-//
-// this.registerHandler(CloseMessage.class, (closeMessage, channelContext) ->
-// {
-// LOGGER.info("Client disconnected: "+channelContext.channel().remoteAddress());
-// });
-// }
-//
-// private void bind()
-// {
-// ServerBootstrap bootstrap = new ServerBootstrap()
-// .group(this.bossGroup, this.workerGroup)
-// .channel(NioServerSocketChannel.class)
-// .handler(new LoggingHandler(LogLevel.DEBUG))
-// .childHandler(new NetworkChannelInitializer(this.messageHandler));
-//
-// ChannelFuture bindFuture = bootstrap.bind(this.port);
-// bindFuture.addListener((ChannelFuture channelFuture) ->
-// {
-// if (!channelFuture.isSuccess())
-// {
-// throw new RuntimeException("Failed to bind: " + channelFuture.cause());
-// }
-//
-// LOGGER.info("Server is started on port "+this.port);
-// });
-//
-// this.channel = bindFuture.channel();
-// this.channel.closeFuture().addListener(future -> this.close());
-// }
-//
-// public void disconnectClient(ChannelHandlerContext ctx, String reason)
-// {
-// ctx.channel().config().setAutoRead(false);
-// ctx.writeAndFlush(new CloseReasonMessage(reason))
-// .addListener(ChannelFutureListener.CLOSE);
-// }
-//
-// @Override
-// public void close()
-// {
-// if (this.closeReason != null)
-// {
-// LOGGER.error(this.closeReason);
-// }
-//
-// if (this.isClosed)
-// {
-// return;
-// }
-// this.isClosed = true;
-//
-// LOGGER.info("Shutting down the network server.");
-// this.workerGroup.shutdownGracefully().syncUninterruptibly();
-// this.bossGroup.shutdownGracefully().syncUninterruptibly();
-// LOGGER.info("Network server has been closed.");
-// }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/AckMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/AckMessage.java
deleted file mode 100644
index 573c3809e..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/AckMessage.java
+++ /dev/null
@@ -1,45 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.messages;
-
-import com.seibel.distanthorizons.core.network.protocol.INetworkMessage;
-import com.seibel.distanthorizons.core.network.protocol.MessageRegistry;
-//import io.netty.buffer.ByteBuf;
-
-/**
- * Simple empty response message.
- * This message is not sent automatically.
- */
-public class AckMessage implements INetworkMessage
-{
- public Class extends INetworkMessage> messageType;
-
-
-
- public AckMessage() { }
- public AckMessage(Class extends INetworkMessage> messageType) { this.messageType = messageType; }
-
-// @Override
-// public void encode(ByteBuf out) { out.writeInt(MessageRegistry.INSTANCE.getMessageId(this.messageType)); }
-//
-// @Override
-// public void decode(ByteBuf in) { this.messageType = MessageRegistry.INSTANCE.getMessageClassById(in.readInt()); }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/CloseMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/CloseMessage.java
deleted file mode 100644
index d9dcb269a..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/CloseMessage.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.messages;
-
-import com.seibel.distanthorizons.core.network.protocol.INetworkMessage;
-//import io.netty.buffer.ByteBuf;
-
-/**
- * This is not a "real" message, and only used to indicate a disconnection.
- * To send a "disconnect reason" message, use {@link CloseReasonMessage}.
- */
-public class CloseMessage implements INetworkMessage
-{
-// @Override
-// public void encode(ByteBuf out) { throw new UnsupportedOperationException("CloseMessage is not a real message, and must not be sent."); }
-//
-// @Override
-// public void decode(ByteBuf in) { throw new UnsupportedOperationException("CloseMessage is not a real message, and must not be received."); }
-
-}
-
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/PlayerUUIDMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/PlayerUUIDMessage.java
deleted file mode 100644
index 759671d5e..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/PlayerUUIDMessage.java
+++ /dev/null
@@ -1,46 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.messages;
-
-import com.seibel.distanthorizons.core.network.protocol.INetworkMessage;
-//import io.netty.buffer.ByteBuf;
-
-import java.util.UUID;
-
-public class PlayerUUIDMessage implements INetworkMessage
-{
- public UUID playerUUID;
-
-
-
- public PlayerUUIDMessage() { }
- public PlayerUUIDMessage(UUID playerUUID) { this.playerUUID = playerUUID; }
-
-// @Override
-// public void encode(ByteBuf out)
-// {
-// out.writeLong(this.playerUUID.getMostSignificantBits());
-// out.writeLong(this.playerUUID.getLeastSignificantBits());
-// }
-//
-// @Override
-// public void decode(ByteBuf in) { this.playerUUID = new UUID(in.readLong(), in.readLong()); }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/RemotePlayerConfigMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/RemotePlayerConfigMessage.java
deleted file mode 100644
index 2460d8d48..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/RemotePlayerConfigMessage.java
+++ /dev/null
@@ -1,42 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.messages;
-
-import com.seibel.distanthorizons.core.network.protocol.INetworkObject;
-import com.seibel.distanthorizons.core.network.protocol.INetworkMessage;
-import com.seibel.distanthorizons.core.network.objects.RemotePlayer;
-//import io.netty.buffer.ByteBuf;
-
-public class RemotePlayerConfigMessage implements INetworkMessage
-{
- public RemotePlayer.Payload payload;
-
-
-
- public RemotePlayerConfigMessage() { }
- public RemotePlayerConfigMessage(RemotePlayer.Payload payload) { this.payload = payload; }
-
-// @Override
-// public void encode(ByteBuf out) { this.payload.encode(out); }
-//
-// @Override
-// public void decode(ByteBuf in) { this.payload = INetworkObject.decode(new RemotePlayer.Payload(), in); }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/objects/RemotePlayer.java b/core/src/main/java/com/seibel/distanthorizons/core/network/objects/RemotePlayer.java
deleted file mode 100644
index ca0909ed6..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/objects/RemotePlayer.java
+++ /dev/null
@@ -1,53 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.objects;
-
-import com.seibel.distanthorizons.core.network.protocol.INetworkObject;
-import com.seibel.distanthorizons.core.wrapperInterfaces.misc.IServerPlayerWrapper;
-//import io.netty.buffer.ByteBuf;
-//import io.netty.channel.ChannelHandlerContext;
-
-public class RemotePlayer
-{
- public IServerPlayerWrapper serverPlayer;
- public Payload payload;
-// public ChannelHandlerContext channelContext;
-
-
-
- public RemotePlayer(IServerPlayerWrapper serverPlayer) { this.serverPlayer = serverPlayer; }
-
- public static class Payload implements INetworkObject
- {
- // TODO Replace this example with useful fields,
- // this should include any information the server needs to know about the connected client
- public int renderDistance;
-
-
-
-// @Override
-// public void encode(ByteBuf out) { out.writeInt(this.renderDistance); }
-//
-// @Override
-// public void decode(ByteBuf in) { this.renderDistance = in.readInt(); }
-
- }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/INetworkObject.java b/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/INetworkObject.java
deleted file mode 100644
index 180700c44..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/INetworkObject.java
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.protocol;
-
-//import io.netty.buffer.ByteBuf;
-
-import java.nio.charset.StandardCharsets;
-
-public interface INetworkObject
-{
-// void encode(ByteBuf out);
-//
-// void decode(ByteBuf in);
-//
-// static T decode(T obj, ByteBuf inputByteBuf)
-// {
-// obj.decode(inputByteBuf);
-// return obj;
-// }
-//
-// static void encodeString(String inputString, ByteBuf outputByteBuf)
-// {
-// outputByteBuf.writeShort(inputString.length());
-// outputByteBuf.writeBytes(inputString.getBytes(StandardCharsets.UTF_8));
-// }
-//
-// static String decodeString(ByteBuf inputByteBuf)
-// {
-// int length = inputByteBuf.readShort();
-// return inputByteBuf.readBytes(length).toString(StandardCharsets.UTF_8);
-// }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/MessageDecoder.java b/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/MessageDecoder.java
deleted file mode 100644
index 84628d6c6..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/MessageDecoder.java
+++ /dev/null
@@ -1,37 +0,0 @@
-/*
- * This file is part of the Distant Horizons mod
- * licensed under the GNU LGPL v3 License.
- *
- * Copyright (C) 2020-2023 James Seibel
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Lesser General Public License as published by
- * the Free Software Foundation, version 3.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public License
- * along with this program. If not, see .
- */
-
-package com.seibel.distanthorizons.core.network.protocol;
-
-//import io.netty.buffer.ByteBuf;
-//import io.netty.channel.ChannelHandlerContext;
-//import io.netty.handler.codec.ByteToMessageDecoder;
-
-import java.util.List;
-
-public class MessageDecoder //extends ByteToMessageDecoder
-{
-// @Override
-// protected void decode(ChannelHandlerContext channelContext, ByteBuf inputByteBuf, List