Un inicio

Meter primero crossterm y luego probar con imgui y mas cosas
This commit is contained in:
Ruben Garcalia
2026-05-16 22:36:34 +02:00
parent 27dbf2fa3c
commit 9ce7217d6b
13 changed files with 378 additions and 0 deletions

13
src/models/attacker.rs Normal file
View File

@@ -0,0 +1,13 @@
use serde::{Deserialize, Serialize};
#[derive(Debug, Serialize, Deserialize, Clone)]
pub struct Attacker {
#[serde(rename = "Name")]
pub name: String,
#[serde(rename = "Shortcut")]
pub shortcut: i32,
#[serde(rename = "TeamNum")]
pub team_num: i32
}