mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
Add SystemTime to bevy_utils (#11054)
# Objective https://github.com/bevyengine/bevy/pull/10702 has overridden the changes that https://github.com/bevyengine/bevy/pull/10980 did. ## Solution Re-add `SystemTime` to `bevy_utils`, along with a few other types. --- ## Changelog - Rexported `SystemTime`, `SystemTimeError`, and `TryFromFloatSecsError` from `bevy_utils`.
This commit is contained in:
parent
ced216f59a
commit
42f721382c
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ pub use hashbrown;
|
|||
pub use petgraph;
|
||||
pub use thiserror;
|
||||
pub use tracing;
|
||||
pub use web_time::{Duration, Instant};
|
||||
pub use web_time::{Duration, Instant, SystemTime, SystemTimeError, TryFromFloatSecsError};
|
||||
|
||||
#[allow(missing_docs)]
|
||||
pub mod nonmax {
|
||||
|
|
Loading…
Reference in a new issue