mirror of
https://github.com/tribufu/rust-gamedig
synced 2026-05-18 09:35:50 +00:00
* buffer: Add UTF8LengthPrefixed string decoder * games: Use expression for default port This allows us to refer to constants for the default ports if we want to (literals will still work). * games: Add support for mindustry
38 lines
603 B
Rust
38 lines
603 B
Rust
//! Currently supported games.
|
|
|
|
pub mod gamespy;
|
|
pub mod quake;
|
|
pub mod unreal2;
|
|
pub mod valve;
|
|
|
|
pub use gamespy::*;
|
|
pub use quake::*;
|
|
pub use unreal2::*;
|
|
pub use valve::*;
|
|
|
|
/// Battalion 1944
|
|
pub mod battalion1944;
|
|
/// Frontlines: Fuel of War
|
|
pub mod ffow;
|
|
/// Just Cause 2: Multiplayer
|
|
pub mod jc2m;
|
|
/// Mindustry
|
|
pub mod mindustry;
|
|
/// Minecraft
|
|
pub mod minecraft;
|
|
/// Savage 2
|
|
pub mod savage2;
|
|
/// The Ship
|
|
pub mod theship;
|
|
|
|
pub mod types;
|
|
pub use types::*;
|
|
|
|
pub mod query;
|
|
pub use query::*;
|
|
|
|
#[cfg(feature = "game_defs")]
|
|
mod definitions;
|
|
|
|
#[cfg(feature = "game_defs")]
|
|
pub use definitions::GAMES;
|