valence_protocol/packets/play/
update_beacon_c2s.rs
1use crate::{Decode, Encode, Packet, VarInt};
2
3#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
4pub struct UpdateBeaconC2s {
5 pub primary_effect: Option<VarInt>,
6 pub secondary_effect: Option<VarInt>,
7}