16 lines
353 B
Rust
16 lines
353 B
Rust
//! 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;
|
|
pub mod engine_bridge;
|
|
pub mod input;
|
|
pub mod rendering;
|
|
pub mod setup;
|
|
|
|
pub use cube::CubeMarker;
|
|
pub use engine_bridge::EngineBridgePlugin;
|