Skip to main content

steel_core/
lib.rs

1//! # Steel Core
2//!
3//! The core library for the Steel Minecraft server. Handles everything related to the PLAY state.
4
5#![feature(try_as_dyn)]
6
7use crate::chunk::chunk_map::ChunkMap;
8
9pub mod behavior;
10pub mod block_entity;
11pub mod bootstrap;
12pub mod chunk;
13pub mod chunk_saver;
14pub mod command;
15pub mod config;
16pub(crate) mod enchantment_helper;
17pub mod entity;
18pub mod fluid;
19pub mod inventory;
20pub mod level_data;
21pub mod permission;
22pub mod physics;
23pub mod player;
24pub mod poi;
25pub(crate) mod portal;
26pub mod scoreboard;
27pub mod server;
28#[cfg(test)]
29#[path = "../tests/support/mod.rs"]
30pub(crate) mod test_support;
31pub mod world;
32pub mod worldgen;