mindustry logic execution, map- and schematic- parsing and rendering
Diffstat (limited to 'src/lib.rs')
| -rw-r--r-- | src/lib.rs | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -15,18 +15,8 @@ pub mod fluid; pub mod item; mod logic; pub mod modifier; -mod registry; mod team; pub mod unit; mod utils; #[doc(inline)] -pub use { - block::build_registry, - data::{ - dynamic::DynData, - map::{Map, MapSerializer}, - renderer::Renderable, - schematic::{Schematic, SchematicSerializer}, - Serializer, - }, -}; +pub use data::{map::Map, renderer::Renderable, schematic::Schematic, Serializable}; |