valence_protocol/packets/play/
remove_entity_status_effect_s2c.rs

1use crate::{Decode, Encode, Packet, VarInt};
2
3#[derive(Clone, PartialEq, Debug, Encode, Decode, Packet)]
4pub struct RemoveEntityStatusEffectS2c {
5    pub entity_id: VarInt,
6    pub effect_id: VarInt,
7}