1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
// Dreamwell Engine v1.0.0 — Pure-logic game engine library.
//
// Contains all deterministic, platform-independent logic for the Dreamwell
// simulation engine. No SpacetimeDB dependency. Compiles natively on any
// target. Unit-testable via `cargo test -p dreamwell-engine`.
//
// Module categories:
// Core types: ids, transform, hierarchy, scene, material, lighting, events
// Simulation: authority, canon, chronoshift, hash, spatial, tile, validation
// Content: game_object, waymark, input, physics
// Import: fbx (feature-gated)
// ── Core types ──────────────────────────────────────────────────────────
// ── Simulation ──────────────────────────────────────────────────────────
// ── Content & game objects ──────────────────────────────────────────────
// ── Avatar core ───────────────────────────────────────────────────────
// ── Import support ──────────────────────────────────────────────────────
// ── SDK: .dream file format ─────────────────────────────────────────────
// ── Loom: scene orchestrator ───────────────────────────────────────────
// ── Zone runtime ──────────────────────────────────────────────────────
// ── Topology re-export ──────────────────────────────────────────────────
pub use TopologyLayer;
// ── Authority re-exports (backward compat) ──────────────────────────────
pub use ;