aboutsummaryrefslogtreecommitdiff
path: root/azalea-protocol/src/packets/game/s_set_beacon.rs
blob: b0b911a144a30b7d477974516ff91036620cde2c (plain)
1
2
3
4
5
6
7
8
9
10
use azalea_buf::AzBuf;
use azalea_protocol_macros::ServerboundGamePacket;

#[derive(Clone, Debug, AzBuf, ServerboundGamePacket)]
pub struct ServerboundSetBeacon {
    #[var]
    pub primary: Option<u32>,
    #[var]
    pub secondary: Option<u32>,
}