1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-27 00:47:45 +00:00
kawari/src/world/mod.rs
Joshua Goins c4b9ad060b Add basic Event scripting capaibilities
This implements the first event script, going from the first Ul'dah opening
cutscene to the next.
2025-03-28 23:00:32 -04:00

22 lines
386 B
Rust

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