naia-shared 0.25.0

Common functionality shared between naia-server & naia-client crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
use naia_socket_shared::TestClock;

#[doc(hidden)]
pub struct Timestamp;

impl Timestamp {
    /// Returns the current simulated time in milliseconds (test clock, not wall clock).
    pub fn now() -> u64 {
        TestClock::current_time_ms() / 1000
    }
}