Browse Source

RightText support in the ship

pull/143/head
andy 6 months ago
parent
commit
a71692d62a
  1. 2
      src/ship_server/src/lib.rs

2
src/ship_server/src/lib.rs

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

Loading…
Cancel
Save