aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_server_links.rs
diff options
context:
space:
mode:
Diffstat (limited to 'azalea-protocol/src/packets/game/c_server_links.rs')
-rw-r--r--azalea-protocol/src/packets/game/c_server_links.rs9
1 files changed, 9 insertions, 0 deletions
diff --git a/azalea-protocol/src/packets/game/c_server_links.rs b/azalea-protocol/src/packets/game/c_server_links.rs
new file mode 100644
index 00000000..80c444f0
--- /dev/null
+++ b/azalea-protocol/src/packets/game/c_server_links.rs
@@ -0,0 +1,9 @@
+use azalea_buf::AzBuf;
+use azalea_protocol_macros::ClientboundGamePacket;
+
+use crate::common::server_links::ServerLinkEntry;
+
+#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
+pub struct ClientboundServerLinks {
+ pub links: Vec<ServerLinkEntry>,
+}