1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-05-19 17:27:45 +00:00
kawari/src/world/mod.rs
Joshua Goins 4a36581b19 Improve how the status effect list is sent and created
There is now a dedicated StatusEffects struct that provides a nicer API
to work with these. The list is also sent when needed and only when a
status effect changes, as the client handles the ticking down of
durations itself.
2025-03-28 00:22:41 -04:00

16 lines
329 B
Rust

pub mod ipc;
mod zone;
pub use zone::Zone;
mod chat_handler;
pub use chat_handler::ChatHandler;
mod connection;
pub use connection::{LuaPlayer, PlayerData, StatusEffects, ZoneConnection};
mod database;
pub use database::{CharacterData, WorldDatabase};
mod inventory;
pub use inventory::{EquippedContainer, Inventory, Item};