Added initial game logic service

This commit is contained in:
2025-06-24 14:10:27 -04:00
parent 4c91fe3557
commit f75782885b
30 changed files with 1366 additions and 43 deletions

View File

@@ -0,0 +1,13 @@
#[derive(Debug)]
struct Destination {
pub x: f32,
pub y: f32,
pub z: f32,
dest: u16,
}
impl Default for Destination {
fn default() -> Self {
Self { x: 520000.0, y: 520000.0, z: 1.0, dest: 20 }
}
}