blob: fcaef9d458a35de599df4c2500458b6cabbe191a (
plain)
1
2
3
4
5
6
7
8
|
use azalea_buf::AzBuf;
use azalea_protocol_macros::ClientboundGamePacket;
use uuid::Uuid;
#[derive(Clone, Debug, AzBuf, ClientboundGamePacket)]
pub struct ClientboundPlayerInfoRemove {
pub profile_ids: Vec<Uuid>,
}
|