bevy_platform 0.18.1

Provides common platform agnostic APIs, as well as platform-specific features for Bevy Engine
Documentation
1
2
3
4
5
6
7
8
9
//! Provides cell primitives.
//!
//! This is a drop-in replacement for `std::cell::SyncCell`/`std::cell::SyncUnsafeCell`.

mod sync_cell;
mod sync_unsafe_cell;

pub use sync_cell::SyncCell;
pub use sync_unsafe_cell::SyncUnsafeCell;