blizzard_server/lib.rs
1//! # Blizzard Server Engine
2//!
3//! This library along with the Blizzard Game Engine is an all-in-one solution to develop TCP multiplayer games.
4//! Please see website to understand how the Blizzard Game and Server engines work!
5//! You can also see an example in the GitHub repo, inside the example lib.
6
7#[cfg(test)]
8mod tests {
9 #[test]
10 fn run_game() {
11 assert_eq!(2 + 2, 4);
12 }
13}
14
15#[macro_use]
16extern crate serde_derive;
17extern crate blizzard_engine;
18extern crate blizzard_engine_derive;
19extern crate blizzard_id;
20extern crate serde;
21extern crate serde_json;
22
23// Entry point is in server
24mod game;
25pub mod server;