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

state handling

This commit is contained in:
Robin Appelman 2019-03-02 23:05:17 +01:00
commit 1b1878a77b
6 changed files with 153 additions and 18 deletions

View file

@ -120,11 +120,11 @@ impl BitRead<LittleEndian> for SayText2Kind {
#[derive(Debug, Clone)]
pub struct SayText2Message {
client: u8,
raw: u8,
kind: SayText2Kind,
from: String,
text: String,
pub client: u8,
pub raw: u8,
pub kind: SayText2Kind,
pub from: String,
pub text: String,
}
impl BitRead<LittleEndian> for SayText2Message {