1
2
3
4
5
6
7
8
use uuid::Uuid;

use crate::{Decode, Encode, Packet};

#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
pub struct SpectatorTeleportC2s {
    pub target: Uuid,
}