1
Fork 0
mirror of https://github.com/redstrate/Kawari.git synced 2025-04-22 23:27:46 +00:00

Document what LobbyConnection and ZoneConnection is

This commit is contained in:
Joshua Goins 2025-03-17 17:02:53 -04:00
parent c510d955bd
commit ee1b79ee56
2 changed files with 2 additions and 0 deletions

View file

@ -22,6 +22,7 @@ use super::{
}; };
use crate::lobby::ipc::ClientLobbyIpcSegment; use crate::lobby::ipc::ClientLobbyIpcSegment;
/// Represents a single connection between an instance of the client and the lobby server
pub struct LobbyConnection { pub struct LobbyConnection {
pub socket: TcpStream, pub socket: TcpStream,

View file

@ -16,6 +16,7 @@ use super::{
}, },
}; };
/// Represents a single connection between an instance of the client and the world server
pub struct ZoneConnection { pub struct ZoneConnection {
pub socket: TcpStream, pub socket: TcpStream,