aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/config/c_server_links.rs
blob: f697d95309cf93c6a56a833b340d67ec259c079e (plain)
1
2
3
4
5
6
7
8
9
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundConfigPacket;

use crate::common::server_links::ServerLinkEntry;

#[derive(AzBuf, ClientboundConfigPacket, Clone, Debug, PartialEq)]
pub struct ClientboundServerLinks {
    pub links: Vec<ServerLinkEntry>,
}