12 lines
245 B
Rust
12 lines
245 B
Rust
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 {}
|