Galactica/crates/playeragent/src/playerstatus.rs

6 lines
80 B
Rust

use cgmath::Point2;
pub struct PlayerStatus {
pub pos: Option<Point2<f32>>,
}