mirror of
https://github.com/Xevion/Pac-Man.git
synced 2025-12-06 21:15:48 -06:00
14 lines
343 B
Rust
14 lines
343 B
Rust
//! Platform abstraction layer for cross-platform functionality.
|
|
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
mod desktop;
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
pub mod tracing_buffer;
|
|
#[cfg(not(target_os = "emscripten"))]
|
|
pub use desktop::*;
|
|
|
|
#[cfg(target_os = "emscripten")]
|
|
pub use emscripten::*;
|
|
#[cfg(target_os = "emscripten")]
|
|
mod emscripten;
|