use crate::command::Command; use crate::math::Vector; use serde::{Deserialize, Serialize}; #[derive(Clone, Debug, Serialize, Deserialize)] pub struct SetRcs { pub translation: Vector, pub rotation: Vector, } impl Command for SetRcs {}