1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-03 18:24:05 +02:00

stop packet has a tick

This commit is contained in:
Robin Appelman 2021-07-21 15:19:59 +02:00
commit df597defce

View file

@ -1,4 +1,7 @@
use bitbuffer::{BitRead, BitWrite}; use bitbuffer::{BitRead, BitWrite};
#[derive(Debug, BitRead, BitWrite, PartialEq)] #[derive(Debug, BitRead, BitWrite, PartialEq)]
pub struct StopPacket; pub struct StopPacket {
#[size = 24]
tick: u32,
}