12 lines
247 B
Rust
12 lines
247 B
Rust
#![feature(iter_collect_into)]
|
|
|
|
use atomic_float::AtomicF32;
|
|
use gui::DEFAULT_VOLUME_THRESHOLD;
|
|
|
|
pub mod gui;
|
|
pub mod storage_dir;
|
|
pub mod combatlog;
|
|
pub mod auto;
|
|
|
|
pub const POWER_THRESHOLD: AtomicF32 = AtomicF32::new(DEFAULT_VOLUME_THRESHOLD);
|
|
|