mindustry logic execution, map- and schematic- parsing and rendering
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
//! crate for dealing with mindustry
#![feature(
    array_chunks,
    const_trait_impl,
    unchecked_math,
    slice_as_chunks,
    slice_swap_unchecked,
    let_chains
)]
#![allow(clippy::missing_safety_doc, clippy::missing_const_for_fn, clippy::perf)]
pub mod block;
mod content;
pub mod data;
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,
    },
};