mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 05:15:49 -06:00
16 lines
366 B
Rust
16 lines
366 B
Rust
//! Platform abstraction layer for cross-platform functionality.
|
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
mod desktop;
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
pub use desktop::*;
|
|
|
|
/// Tracing buffer is only used on Windows.
|
|
#[cfg(windows)]
|
|
pub mod tracing_buffer;
|
|
|
|
#[cfg(target_os = "emscripten")]
|
|
pub use emscripten::*;
|
|
#[cfg(target_os = "emscripten")]
|
|
mod emscripten;
|