diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/CloseReasonMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/CloseReasonMessage.java
deleted file mode 100644
index 5e2e6bc19..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/CloseReasonMessage.java
+++ /dev/null
@@ -1,41 +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.INetworkObject;
-//import io.netty.buffer.ByteBuf;
-
-public class CloseReasonMessage implements INetworkMessage
-{
- public String reason;
-
-
-
- public CloseReasonMessage() { }
- public CloseReasonMessage(String reason) { this.reason = reason; }
-
-// @Override
-// public void encode(ByteBuf out) { INetworkObject.encodeString(this.reason, out); }
-//
-// @Override
-// public void decode(ByteBuf in) { this.reason = INetworkObject.decodeString(in); }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/HelloMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/HelloMessage.java
deleted file mode 100644
index cc7bcdc9f..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/HelloMessage.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 com.seibel.distanthorizons.coreapi.ModInfo;
-//import io.netty.buffer.ByteBuf;
-
-public class HelloMessage implements INetworkMessage
-{
- public int version = ModInfo.PROTOCOL_VERSION;
-
-
-
-// @Override
-// public void encode(ByteBuf out) { out.writeInt(this.version); }
-//
-// @Override
-// public void decode(ByteBuf in) { this.version = in.readInt(); }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/RequestChunksMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/messages/RequestChunksMessage.java
deleted file mode 100644
index f35f22359..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/messages/RequestChunksMessage.java
+++ /dev/null
@@ -1,40 +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;
-
-public class RequestChunksMessage implements INetworkMessage
-{
-
-// @Override
-// public void encode(ByteBuf out)
-// {
-//
-// }
-//
-// @Override
-// public void decode(ByteBuf in)
-// {
-//
-// }
-
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/EMessageHandlerSide.java b/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/EMessageHandlerSide.java
deleted file mode 100644
index 732aa0b74..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/EMessageHandlerSide.java
+++ /dev/null
@@ -1,30 +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;
-
-/**
- * CLIENT,
- * SERVER,
- */
-public enum EMessageHandlerSide
-{
- CLIENT,
- SERVER
-}
diff --git a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/INetworkMessage.java b/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/INetworkMessage.java
deleted file mode 100644
index c3dc6390b..000000000
--- a/core/src/main/java/com/seibel/distanthorizons/core/network/protocol/INetworkMessage.java
+++ /dev/null
@@ -1,27 +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;
-
-/** For now this is only used for constraining listeners */
-public interface INetworkMessage extends INetworkObject
-{
-
-}
-