Added Alien Swarm and Alien Swamr: Reactive Drop support

This commit is contained in:
cosminperram 2022-10-22 17:03:14 +03:00
parent e8cbe7b9f5
commit a5bdd05c24
7 changed files with 297 additions and 96 deletions

View file

@ -1,12 +1,25 @@
//! 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;