[Games] Add Crysis Wars support.

This commit is contained in:
CosminPerRam 2023-04-30 01:26:12 +03:00
parent 3ef599056a
commit 33e8f43cb8
5 changed files with 13 additions and 49 deletions

7
src/games/cw.rs Normal file
View 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)
}

View file

@ -92,3 +92,5 @@ pub mod unturned;
pub mod ut;
/// V Rising
pub mod vr;
/// Crysis Wars
pub mod cw;