valence_protocol/packets/play/
player_spawn_position_s2c.rs

1use crate::{BlockPos, Decode, Encode, Packet};
2
3#[derive(Copy, Clone, Debug, Encode, Decode, Packet)]
4pub struct PlayerSpawnPositionS2c {
5    pub position: BlockPos,
6    pub angle: f32,
7}