release 1.0

This commit is contained in:
2025-09-05 00:47:46 +02:00
parent 89689c44fd
commit f937aeca25
29 changed files with 1984 additions and 268 deletions

View File

@@ -1,9 +1,14 @@
use image::RgbImage;
/// Represents an alliance with a unique ID, name, short name and logo.
#[derive(Debug, Clone)]
pub struct Alliance {
/// The unique ID of the alliance.
pub alliance_id: u32,
/// The name of the alliance.
pub name: String,
/// The short name of the alliance.
pub short: String,
/// The logo image of the alliance in RGB format.
pub logo: RgbImage,
}