pub trait DemoChatWrite {
// Required methods
fn write_chat(&mut self, msg: &str) -> Result<(), WriteError>;
fn write_player_chat(
&mut self,
player_id: i32,
msg: &str,
) -> Result<(), WriteError>;
}
pub trait DemoChatWrite {
// Required methods
fn write_chat(&mut self, msg: &str) -> Result<(), WriteError>;
fn write_player_chat(
&mut self,
player_id: i32,
msg: &str,
) -> Result<(), WriteError>;
}