aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/c_server_links.rs
blob: 80c444f02b4105ecc112e921518da3fe1b7d055e (plain)
1
2
3
4
5
6
7
8
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>,
}