From af39ec54d35b8c3777add6b6a597e5963067234d Mon Sep 17 00:00:00 2001 From: Crozet Sébastien Date: Thu, 19 Nov 2020 11:07:00 +0100 Subject: Remove the narrow-phase graph indices from the collider. They are on the narrow-phase now. --- src/data/mod.rs | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/data/mod.rs') 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; -- cgit