chunkedge_protocol/packets/play/
set_beacon_c2s.rs1use chunkedge_binary::{Decode, Encode, VarInt};
2
3use crate::Packet;
4#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
5pub struct SetBeaconC2s {
6 pub primary_effect: Option<VarInt>,
7 pub secondary_effect: Option<VarInt>,
8}