More tests and some other stuff

This commit is contained in:
Lol3rrr
2024-09-30 00:47:32 +02:00
parent fa57cacae0
commit a872c5b3db
3 changed files with 3627 additions and 1 deletions

View File

@@ -13,4 +13,16 @@ fn main() {
println!("Players: {:?}", output.player_info);
println!("Events: {:?}", output.events.len());
println!("Entity-Ticks: {:?}", output.entity_states.ticks.len());
for tick in output.entity_states.ticks.iter() {
for state in tick.states.iter() {
if state.class.as_str() != "CCSPlayerPawn" {
continue;
}
for prop in state.props.iter() {
println!("{:?} = {:?}", prop.prop_info.prop_name, prop.value);
}
}
}
}