mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 15:27:28 +00:00
[Games] Add Crysis Wars support.
This commit is contained in:
parent
3ef599056a
commit
33e8f43cb8
5 changed files with 13 additions and 49 deletions
7
src/games/cw.rs
Normal file
7
src/games/cw.rs
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
use crate::protocols::gamespy;
|
||||
use crate::protocols::gamespy::three::Response;
|
||||
use crate::GDResult;
|
||||
|
||||
pub fn query(address: &str, port: Option<u16>) -> GDResult<Response> {
|
||||
gamespy::three::query(address, port.unwrap_or(64100), None)
|
||||
}
|
||||
|
|
@ -92,3 +92,5 @@ pub mod unturned;
|
|||
pub mod ut;
|
||||
/// V Rising
|
||||
pub mod vr;
|
||||
/// Crysis Wars
|
||||
pub mod cw;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue