mirror of
https://git.ngram.ca/OpenJam/rc-servers
synced 2026-08-23 23:08:52 +00:00
19 lines
719 B
Rust
19 lines
719 B
Rust
use polariton::operation::Typed;
|
|
|
|
pub struct CosmeticLimitsData {
|
|
pub others_max_holo_and_trails: u32,
|
|
pub others_max_headlamps: u32,
|
|
pub others_max_cosmetic_items_with_particles: u32,
|
|
}
|
|
|
|
impl CosmeticLimitsData {
|
|
pub fn as_transmissible(&self) -> Typed {
|
|
Typed::HashMap(vec![
|
|
(Typed::Str("OthersMaxNumberHoloAndTrails".into()), Typed::Int(self.others_max_holo_and_trails as i32)),
|
|
(Typed::Str("OthersMaxNumberHeadlamps".into()), Typed::Int(self.others_max_headlamps as i32)),
|
|
(Typed::Str("OthersMaxCosmeticItemsWithParticleSystem".into()), Typed::Int(self.others_max_cosmetic_items_with_particles as i32)),
|
|
].into()
|
|
)
|
|
}
|
|
}
|