11 lines
326 B
Rust
11 lines
326 B
Rust
pub mod components;
|
|
pub mod log;
|
|
pub mod systems;
|
|
|
|
pub use crate::world::tiles::tilemap::CargoPlaceError;
|
|
pub use components::{Cargo, CarryVisualState, HaulSlot, Haulable};
|
|
pub use log::spawn_log_cargo;
|
|
pub use systems::{any_hauling, carry_visual_system, haul_encumbrance_system};
|
|
|
|
pub use crate::plugins::cargo::CargoPlugin;
|