Preparando terreno

This commit is contained in:
Ruben Garcalia
2026-05-18 20:24:22 +02:00
parent 9ce7217d6b
commit 6e7937b049
21 changed files with 482 additions and 13 deletions

View File

@@ -0,0 +1,16 @@
use serde::{Deserialize, Serialize};
use super::location::Location;
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Ball {
#[serde(rename = "PreHitSpeed")]
pub pre_hit_speed: f64,
#[serde(rename = "PostHitSpeed")]
pub post_hit_speed: f64,
#[serde(rename = "Location")]
pub location: Location
}