right-side text support #135

Closed
andy wants to merge 58 commits from andy/right-text into master
Showing only changes of commit fe84bd4109 - Show all commits

View File

@ -292,6 +292,7 @@ pub enum SendShipPacket {
TradeSuccessful(TradeSuccessful),
LobbyEvent(LobbyEvent),
LargeDialog(LargeDialog),
RightText(RightText),
}
impl SendServerPacket for SendShipPacket {
@ -336,6 +337,7 @@ impl SendServerPacket for SendShipPacket {
SendShipPacket::TradeSuccessful(pkt) => pkt.as_bytes(),
SendShipPacket::LobbyEvent(pkt) => pkt.as_bytes(),
SendShipPacket::LargeDialog(pkt) => pkt.as_bytes(),
SendShipPacket::RightText(pkt) => pkt.as_bytes(),
}
}
}