right-side text support
Some checks failed
continuous-integration/drone/push Build is failing
continuous-integration/drone/pr Build is failing

This commit is contained in:
andy 2023-02-16 00:06:14 +00:00
parent e8494c5bbd
commit fe84bd4109

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(),
}
}
}