Initial version

This commit is contained in:
Lol3rrr
2024-09-15 05:09:15 +02:00
commit c7aa4dbe8c
489 changed files with 124650 additions and 0 deletions

15
build.rs Normal file
View File

@@ -0,0 +1,15 @@
use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(
&[
"Protobufs/csgo/demo.proto",
"Protobufs/csgo/networkbasetypes.proto",
"Protobufs/csgo/netmessages.proto",
"Protobufs/csgo/gameevents.proto",
"Protobufs/csgo/cstrike15_usermessages.proto",
],
&["Protobufs/csgo"],
)?;
Ok(())
}