mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-06-01 09:42:41 +00:00
[Crate] Add formatting (#22)
* chore: add standard for formatting * chore: manually tidy up imports and format * chore: remove vscode and add to gitignore * chore: alphabetically order and fix * chore: format * chore: fix format issue with payload * chore: format as merge had unformatted code * [format] Fix comments, change max width and binop operator --------- Co-authored-by: CosminPerRam <cosmin.p@live.com>
This commit is contained in:
parent
e023e13236
commit
1b13d39856
71 changed files with 3165 additions and 2593 deletions
185
src/games/mod.rs
185
src/games/mod.rs
|
|
@ -1,93 +1,92 @@
|
|||
|
||||
//! Currently supported games.
|
||||
|
||||
/// Team Fortress 2
|
||||
pub mod tf2;
|
||||
/// The Ship
|
||||
pub mod ts;
|
||||
/// Counter-Strike: Global Offensive
|
||||
pub mod csgo;
|
||||
/// Counter-Strike: Source
|
||||
pub mod css;
|
||||
/// Day of Defeat: Source
|
||||
pub mod dods;
|
||||
/// Garry's Mod
|
||||
pub mod gm;
|
||||
/// Left 4 Dead
|
||||
pub mod l4d;
|
||||
/// Left 4 Dead 2
|
||||
pub mod l4d2;
|
||||
/// Half-Life 2 Deathmatch
|
||||
pub mod hl2dm;
|
||||
/// Alien Swarm
|
||||
pub mod aliens;
|
||||
/// Alien Swarm: Reactive Drop
|
||||
pub mod asrd;
|
||||
/// Insurgency
|
||||
pub mod ins;
|
||||
/// Insurgency: Sandstorm
|
||||
pub mod inss;
|
||||
/// Insurgency: Modern Infantry Combat
|
||||
pub mod insmic;
|
||||
/// Counter Strike: Condition Zero
|
||||
pub mod cscz;
|
||||
/// Day of Defeat
|
||||
pub mod dod;
|
||||
/// Minecraft
|
||||
pub mod mc;
|
||||
/// 7 Days To Die
|
||||
pub mod sdtd;
|
||||
/// ARK: Survival Evolved
|
||||
pub mod ase;
|
||||
/// Unturned
|
||||
pub mod unturned;
|
||||
/// The Forest
|
||||
pub mod tf;
|
||||
/// Team Fortress Classic
|
||||
pub mod tfc;
|
||||
/// Sven Co-op
|
||||
pub mod sc;
|
||||
/// Rust
|
||||
pub mod rust;
|
||||
/// Counter-Strike
|
||||
pub mod cs;
|
||||
/// ARMA 2: Operation Arrowhead
|
||||
pub mod arma2oa;
|
||||
/// Day of Infamy
|
||||
pub mod doi;
|
||||
/// Half-Life Deathmatch: Source
|
||||
pub mod hldms;
|
||||
/// Risk of Rain 2
|
||||
pub mod ror2;
|
||||
/// Battalion 1944
|
||||
pub mod bat1944;
|
||||
/// Black Mesa
|
||||
pub mod bm;
|
||||
/// Project Zomboid
|
||||
pub mod pz;
|
||||
/// Age of Chivalry
|
||||
pub mod aoc;
|
||||
/// Don't Starve Together
|
||||
pub mod dst;
|
||||
/// Colony Survival
|
||||
pub mod cosu;
|
||||
/// Onset
|
||||
pub mod onset;
|
||||
/// Codename CURE
|
||||
pub mod ccure;
|
||||
/// Ballistic Overkill
|
||||
pub mod bo;
|
||||
/// BrainBread 2
|
||||
pub mod bb2;
|
||||
/// Avorion
|
||||
pub mod avorion;
|
||||
/// Operation: Harsh Doorstop
|
||||
pub mod ohd;
|
||||
/// V Rising
|
||||
pub mod vr;
|
||||
/// Unreal Tournament
|
||||
pub mod ut;
|
||||
/// Battlefield 1942
|
||||
pub mod bf1942;
|
||||
/// Serious Sam
|
||||
pub mod ss;
|
||||
//! Currently supported games.
|
||||
|
||||
/// Alien Swarm
|
||||
pub mod aliens;
|
||||
/// Age of Chivalry
|
||||
pub mod aoc;
|
||||
/// ARMA 2: Operation Arrowhead
|
||||
pub mod arma2oa;
|
||||
/// ARK: Survival Evolved
|
||||
pub mod ase;
|
||||
/// Alien Swarm: Reactive Drop
|
||||
pub mod asrd;
|
||||
/// Avorion
|
||||
pub mod avorion;
|
||||
/// Battalion 1944
|
||||
pub mod bat1944;
|
||||
/// BrainBread 2
|
||||
pub mod bb2;
|
||||
/// Battlefield 1942
|
||||
pub mod bf1942;
|
||||
/// Black Mesa
|
||||
pub mod bm;
|
||||
/// Ballistic Overkill
|
||||
pub mod bo;
|
||||
/// Codename CURE
|
||||
pub mod ccure;
|
||||
/// Colony Survival
|
||||
pub mod cosu;
|
||||
/// Counter-Strike
|
||||
pub mod cs;
|
||||
/// Counter Strike: Condition Zero
|
||||
pub mod cscz;
|
||||
/// Counter-Strike: Global Offensive
|
||||
pub mod csgo;
|
||||
/// Counter-Strike: Source
|
||||
pub mod css;
|
||||
/// Day of Defeat
|
||||
pub mod dod;
|
||||
/// Day of Defeat: Source
|
||||
pub mod dods;
|
||||
/// Day of Infamy
|
||||
pub mod doi;
|
||||
/// Don't Starve Together
|
||||
pub mod dst;
|
||||
/// Garry's Mod
|
||||
pub mod gm;
|
||||
/// Half-Life 2 Deathmatch
|
||||
pub mod hl2dm;
|
||||
/// Half-Life Deathmatch: Source
|
||||
pub mod hldms;
|
||||
/// Insurgency
|
||||
pub mod ins;
|
||||
/// Insurgency: Modern Infantry Combat
|
||||
pub mod insmic;
|
||||
/// Insurgency: Sandstorm
|
||||
pub mod inss;
|
||||
/// Left 4 Dead
|
||||
pub mod l4d;
|
||||
/// Left 4 Dead 2
|
||||
pub mod l4d2;
|
||||
/// Minecraft
|
||||
pub mod mc;
|
||||
/// Operation: Harsh Doorstop
|
||||
pub mod ohd;
|
||||
/// Onset
|
||||
pub mod onset;
|
||||
/// Project Zomboid
|
||||
pub mod pz;
|
||||
/// Risk of Rain 2
|
||||
pub mod ror2;
|
||||
/// Rust
|
||||
pub mod rust;
|
||||
/// Sven Co-op
|
||||
pub mod sc;
|
||||
/// 7 Days To Die
|
||||
pub mod sdtd;
|
||||
/// Serious Sam
|
||||
pub mod ss;
|
||||
/// The Forest
|
||||
pub mod tf;
|
||||
/// Team Fortress 2
|
||||
pub mod tf2;
|
||||
/// Team Fortress Classic
|
||||
pub mod tfc;
|
||||
/// The Ship
|
||||
pub mod ts;
|
||||
/// Unturned
|
||||
pub mod unturned;
|
||||
/// Unreal Tournament
|
||||
pub mod ut;
|
||||
/// V Rising
|
||||
pub mod vr;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue