mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-19 22:36:49 +00:00
I finally got a proof-of-concept working, and am somewhat happy with how I can start building this API now.
16 lines
314 B
Rust
16 lines
314 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, ZoneConnection};
|
|
|
|
mod database;
|
|
pub use database::{CharacterData, WorldDatabase};
|
|
|
|
mod inventory;
|
|
pub use inventory::{EquippedContainer, Inventory, Item};
|