mirror of
https://github.com/Xevion/smart-rgb.git
synced 2025-12-06 01:16:24 -06:00
9 lines
265 B
Rust
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;
|