//! Offline player data.
useglam::{DVec3, Vec2};/// An offline player defines the saved data of a player that is not connected.
#[derive(Debug)]pubstructOfflinePlayer{/// World name.
pubworld: String,
/// Last saved position of the player.
pubpos: DVec3,
/// Last saved look of the player.
publook: Vec2,
}