1
0
Fork 0
mirror of https://codeberg.org/demostf/parser.git synced 2026-06-04 10:34:11 +02:00

Distinguish between client and server ticks

This commit is contained in:
Narcha 2022-09-13 21:19:57 +02:00
commit 69dc14375f
No known key found for this signature in database
GPG key ID: D8A068FBD60270D2
7 changed files with 22 additions and 27 deletions

View file

@ -12,7 +12,7 @@ impl MessageHandler for AllMessages {
true
}
fn handle_message(&mut self, message: &Message, _tick: u32, _parser_state: &ParserState) {
fn handle_message(&mut self, message: &Message, _server_tick: u32, _client_tick: u32, _parser_state: &ParserState) {
black_box(message);
}