initial working demo sans networking

Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
This commit is contained in:
2025-12-11 22:10:06 +00:00
parent 4965d13070
commit 63312e09cb
40 changed files with 1552 additions and 3145 deletions

12
crates/app/src/lib.rs Normal file
View File

@@ -0,0 +1,12 @@
//! 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 rendering;
pub mod setup;
pub use cube::CubeMarker;