1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-24 16:17:44 +00:00

Update some documentation for modules and constants

This commit is contained in:
Joshua Goins 2025-03-17 16:44:17 -04:00
parent 481d6b69a2
commit 9009ae527c

View file

@ -11,6 +11,8 @@ pub mod common;
/// Config management. /// Config management.
pub mod config; pub mod config;
/// Bindings for Oodle network compression.
pub mod oodle; pub mod oodle;
/// Patch server-specific code. /// Patch server-specific code.
@ -26,10 +28,13 @@ pub mod world;
pub mod packet; pub mod packet;
// TODO: make this configurable // TODO: make this configurable
// See https://ffxiv.consolegameswiki.com/wiki/Servers for a list of possible IDs /// The world ID and name for the lobby.
/// See https://ffxiv.consolegameswiki.com/wiki/Servers for a list of possible IDs.
pub const WORLD_ID: u16 = 63; pub const WORLD_ID: u16 = 63;
pub const WORLD_NAME: &str = "KAWARI"; pub const WORLD_NAME: &str = "KAWARI";
/// The zone ID you initially spawn in.
/// See the TerritoryType excel sheet for a list of possible IDs.
pub const ZONE_ID: u16 = 132; pub const ZONE_ID: u16 = 132;
pub const CONTENT_ID: u64 = 11111111111111111; pub const CONTENT_ID: u64 = 11111111111111111;