1
Fork 0
cruisecontrol/interface/src/lib.rs
Andy Killorin 17f484acd5
re-embedded auto in interface
crashes seem to occur when mutating state from across the dylib boundary

not worth troubleshooting when I don't need hot-reloading anymore
2025-03-28 00:08:13 -04:00

13 lines
262 B
Rust

#![feature(iter_collect_into)]
use atomic_float::AtomicF32;
use gui::DEFAULT_VOLUME_THRESHOLD;
pub mod gui;
pub mod combatlog;
pub mod auto;
pub mod auto_impl;
pub mod storage;
pub const POWER_THRESHOLD: AtomicF32 = AtomicF32::new(DEFAULT_VOLUME_THRESHOLD);