mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 07:17:27 +00:00
feat: add PixARK support.
This commit is contained in:
parent
3c9f109942
commit
66a9ed8b3f
4 changed files with 5 additions and 1 deletions
3
GAMES.md
3
GAMES.md
|
|
@ -87,7 +87,8 @@ requirements/information.
|
|||
| Mordhau | MORDHAU | Valve | |
|
||||
| Enshrouded | ENSHROUDED | Valve | |
|
||||
| Myth of Empires | MOE | Valve | |
|
||||
| Pirates, Vikings, and Knights II | PVAK2 | Valve |
|
||||
| Pirates, Vikings, and Knights II | PVAK2 | Valve | |
|
||||
| PixARK | PIXARK | | |
|
||||
|
||||
## Planned to add support:
|
||||
|
||||
|
|
|
|||
|
|
@ -8,6 +8,7 @@ Games:
|
|||
- [Enshrouded](https://store.steampowered.com/app/1203620/Enshrouded/) support.
|
||||
- [Myth of Empires](https://store.steampowered.com/app/1371580/Myth_of_Empires/) support.
|
||||
- [Pirates, Vikings, and Knights II](https://store.steampowered.com/app/17570/Pirates_Vikings_and_Knights_II/) support.
|
||||
- [PixARK](https://store.steampowered.com/app/593600/PixARK/) support.
|
||||
|
||||
# 0.5.0 - 15/03/2024
|
||||
|
||||
|
|
|
|||
|
|
@ -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))),
|
||||
|
|
|
|||
|
|
@ -166,3 +166,4 @@ game_query_mod!(
|
|||
Engine::new(17570),
|
||||
27015
|
||||
);
|
||||
game_query_mod!(pixark, "PixARK", Engine::new(593_600), 27015);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue