diff options
| author | Crozet Sébastien <developer@crozet.re> | 2020-11-19 11:07:00 +0100 |
|---|---|---|
| committer | Crozet Sébastien <developer@crozet.re> | 2020-11-23 15:56:53 +0100 |
| commit | af39ec54d35b8c3777add6b6a597e5963067234d (patch) | |
| tree | 74663c3763e0d7e2f56b375ca46ae0c00942fbec /src/data/mod.rs | |
| parent | c641114f016c47f6b22acc084610847f88ff5a66 (diff) | |
| download | rapier-af39ec54d35b8c3777add6b6a597e5963067234d.tar.gz rapier-af39ec54d35b8c3777add6b6a597e5963067234d.tar.bz2 rapier-af39ec54d35b8c3777add6b6a597e5963067234d.zip | |
Remove the narrow-phase graph indices from the collider.
They are on the narrow-phase now.
Diffstat (limited to 'src/data/mod.rs')
| -rw-r--r-- | src/data/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/data/mod.rs b/src/data/mod.rs index 0e0459e..672bf94 100644 --- a/src/data/mod.rs +++ b/src/data/mod.rs @@ -1,8 +1,10 @@ //! Data structures modified with guaranteed deterministic behavior after deserialization. +pub use self::coarena::Coarena; pub use self::maybe_serializable_data::MaybeSerializableData; pub mod arena; +mod coarena; pub(crate) mod graph; pub(crate) mod hashmap; mod maybe_serializable_data; |
