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,17 @@
use image::RgbImage;
/// Represents a corporation with its details.
#[derive(Debug, Clone)]
pub struct Corporation {
/// The unique identifier of the corporation.
pub corporation_id: u32,
/// The name of the corporation.
pub name: String,
/// A short version or acronym for the corporation's name.
pub short: String,
/// The logo image associated with the corporation, represented as an RGB image.
pub logo: RgbImage,
}