Added Day of Defeat: Source support and renamed The_Ship to TS

This commit is contained in:
CosminPerRam 2022-10-21 12:45:30 +03:00
parent aefd8cc43c
commit a5f9e755ff
7 changed files with 121 additions and 24 deletions

10
examples/ts.rs Normal file
View file

@ -0,0 +1,10 @@
use gamedig::games::ts;
fn main() {
let response = ts::query("46.4.48.226", Some(27017));
match response {
Err(error) => println!("Couldn't query, error: {error}"),
Ok(r) => println!("{:?}", r)
}
}