Files
smart-rgb/crates/borders-core/src/constants.rs
2025-10-11 14:52:54 -05:00

9 lines
265 B
Rust

/// Game tick interval in milliseconds (10 TPS = 100ms per turn)
pub const TICK_INTERVAL: u64 = 100;
/// Income is processed every 10 ticks (1 second at 10 TPS)
pub const INCOME_TICK_INTERVAL: u64 = 10;
/// Number of bot players
pub const BOT_COUNT: usize = 100;