apecs/storage/
mod.rs

1//! Component storage.
2//!
3//! APECs provides an archetypal storage strategy.
4//! To read more about the difference between separated and archetypal storage
5//! check out [this article](https://csherratt.github.io/blog/posts/specs-and-legion/).
6mod archetype;
7pub use archetype::*;