mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-06 15:27:28 +00:00
102 lines
1.7 KiB
Rust
102 lines
1.7 KiB
Rust
//! 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;
|
|
/// Frontlines: Fuel of War
|
|
pub mod ffow;
|
|
/// 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;
|
|
/// Crysis Wars
|
|
pub mod cw;
|
|
/// Quake 2
|
|
pub mod quake2;
|
|
/// Quake 1
|
|
pub mod quake1;
|
|
/// Quake 3: Arena
|
|
pub mod quake3a;
|