mirror of
https://github.com/redstrate/Kawari.git
synced 2025-07-01 20:27:46 +00:00
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.
25 lines
463 B
Rust
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;
|