1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-07-01 20:27:46 +00:00
kawari/src/world/mod.rs
Joshua Goins 8d384c4bd0 Overhaul how we send inventory packets again
I wanted to add armory chest support but the current state of the
inventory was a little frustrating. Adding new containers was too
difficult, so I made the system *even more* generic and easier to use. I
have also split it up into it's own module with a nicer file layout.

Oh yeah, and armory chest works too now.
2025-05-02 16:15:54 -04:00

25 lines
463 B
Rust

mod zone;
pub use zone::Zone;
mod chat_handler;
pub use chat_handler::ChatHandler;
mod connection;
pub use connection::{
ClientHandle, ClientId, FromServer, PlayerData, ServerHandle, ToServer, ZoneConnection,
};
mod database;
pub use database::{CharacterData, WorldDatabase};
mod lua;
pub use lua::{EffectsBuilder, LuaPlayer};
mod event;
pub use event::Event;
mod actor;
pub use actor::Actor;
mod status_effects;
pub use status_effects::StatusEffects;