feat: add PixARK support.

This commit is contained in:
CosminPerRam 2024-04-14 23:15:17 +03:00
parent 3c9f109942
commit 66a9ed8b3f
4 changed files with 5 additions and 1 deletions

View file

@ -96,6 +96,7 @@ pub static GAMES: Map<&'static str, Game> = phf_map! {
"l4d2" => game!("Left 4 Dead 2", 27015, Protocol::Valve(Engine::new(550))),
"ohd" => game!("Operation: Harsh Doorstop", 27005, Protocol::Valve(Engine::new_with_dedicated(736_590, 950_900))),
"onset" => game!("Onset", 7776, Protocol::Valve(Engine::new(1_105_810))),
"pixark" => game!("PixARK", 27015, Protocol::Valve(Engine::new(593_600))),
"postscriptum" => game!("Post Scriptum", 10037, Protocol::Valve(Engine::new(736_220))),
"projectzomboid" => game!("Project Zomboid", 16261, Protocol::Valve(Engine::new(108_600))),
"pvak2" => game!("Pirates, Vikings, and Knights II", 27015, Protocol::Valve(Engine::new(17570))),

View file

@ -166,3 +166,4 @@ game_query_mod!(
Engine::new(17570),
27015
);
game_query_mod!(pixark, "PixARK", Engine::new(593_600), 27015);