mirror of
https://codeberg.org/demostf/parser.git
synced 2026-06-03 10:14:06 +02:00
fmt + cargo update
This commit is contained in:
parent
cf4caa069d
commit
7ed264cae4
6 changed files with 2850 additions and 3480 deletions
|
|
@ -1,11 +1,11 @@
|
|||
pub mod userinfo;
|
||||
|
||||
use bitbuffer::{BitRead, BitReadStream, BitWrite, BitWriteStream, Endianness};
|
||||
use parse_display::Display;
|
||||
use serde::{Deserialize, Deserializer, Serialize, Serializer};
|
||||
use std::cmp::Ordering;
|
||||
use std::fmt::{Debug, Display, Formatter};
|
||||
use std::ops::{Add, Sub};
|
||||
use parse_display::Display;
|
||||
|
||||
pub use userinfo::UserInfo;
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -478,9 +478,9 @@ impl GameStateAnalyser {
|
|||
SendPropIdentifier::new("DT_TFLocalPlayerExclusive", "m_angEyeAngles[0]");
|
||||
const NON_LOCAL_PITCH_ANGLES: SendPropIdentifier =
|
||||
SendPropIdentifier::new("DT_TFNonLocalPlayerExclusive", "m_angEyeAngles[0]");
|
||||
|
||||
|
||||
const SIMTIME_PROP: SendPropIdentifier =
|
||||
SendPropIdentifier::new("DT_BaseEntity", "m_flSimulationTime");
|
||||
SendPropIdentifier::new("DT_BaseEntity", "m_flSimulationTime");
|
||||
|
||||
player.in_pvs = entity.in_pvs;
|
||||
|
||||
|
|
|
|||
File diff suppressed because it is too large
Load diff
|
|
@ -1,7 +1,7 @@
|
|||
use std::ops::{Add, Sub};
|
||||
use bitbuffer::{BitRead, BitWrite};
|
||||
use parse_display::Display;
|
||||
use serde::{Deserialize, Serialize};
|
||||
use std::ops::{Add, Sub};
|
||||
|
||||
#[cfg_attr(feature = "schema", derive(schemars::JsonSchema))]
|
||||
#[derive(BitRead, BitWrite, Debug, Clone, Copy, Default, Serialize, Deserialize, Display)]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue