Update to Bevy 0.17.2
All checks were successful
CI / Formatting (push) Successful in 32s

This commit is contained in:
Michael Bradley 2025-10-13 15:17:23 -04:00
parent 53fe3333f0
commit 27b4644730
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
12 changed files with 852 additions and 642 deletions

View file

@ -77,7 +77,7 @@ impl TryFrom<Vec<u8>> for Packet {
}
}
#[derive(Debug, Event)]
#[derive(Debug, Message)]
pub struct OutboundPacket(pub Packet);
impl From<Packet> for OutboundPacket {
@ -86,7 +86,7 @@ impl From<Packet> for OutboundPacket {
}
}
#[derive(Debug, Event)]
#[derive(Debug, Message)]
pub struct InboundPacket(pub Packet);
impl From<Packet> for InboundPacket {