2025-12-11 22:10:06 +00:00
|
|
|
//! Replicated cube demo app
|
|
|
|
|
//!
|
|
|
|
|
//! This app demonstrates real-time CRDT synchronization between iPad and Mac
|
|
|
|
|
//! with Apple Pencil input controlling a 3D cube.
|
|
|
|
|
|
|
|
|
|
pub mod camera;
|
|
|
|
|
pub mod cube;
|
|
|
|
|
pub mod debug_ui;
|
2025-12-13 22:22:05 +00:00
|
|
|
pub mod engine_bridge;
|
|
|
|
|
pub mod input;
|
2025-12-11 22:10:06 +00:00
|
|
|
pub mod rendering;
|
|
|
|
|
pub mod setup;
|
|
|
|
|
|
|
|
|
|
pub use cube::CubeMarker;
|
2025-12-13 22:22:05 +00:00
|
|
|
pub use engine_bridge::EngineBridgePlugin;
|