chore: honestly fixed so much and forgot to commit

Signed-off-by: Sienna Meridian Satterwhite <sienna@r3t.io>
This commit is contained in:
2025-12-28 17:39:27 +00:00
parent f9f289f5b2
commit d1d3aec8aa
47 changed files with 2248 additions and 438 deletions

View File

@@ -0,0 +1,11 @@
# Serialization Policy
**Never use serde for serialization in this project.**
We use `rkyv` exclusively for all serialization needs:
- Network messages
- Component synchronization
- Persistence
- Any data serialization
If a type from a dependency (like Bevy) doesn't support rkyv, we vendor it and add the rkyv derives ourselves.