inital working setup

This commit is contained in:
2025-09-01 00:47:38 +02:00
commit a10f466538
19 changed files with 3939 additions and 0 deletions

9
src/model/alliance.rs Normal file
View File

@@ -0,0 +1,9 @@
use image::RgbImage;
#[derive(Debug, Clone)]
pub struct Alliance {
pub alliance_id: u32,
pub name: String,
pub short: String,
pub logo: RgbImage,
}