aboutsummaryrefslogtreecommitdiff
path: root/games/rstnode/src/lib.rs
blob: e063da34d8bf98314a44d21f0d0adc8e32dbb4fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#![allow(warnings)]

#[macro_use]
extern crate const_env;

mod _if;
pub use _if::GameIf;

pub mod data;
pub mod gens;

pub mod _loop;
pub mod _match;
pub mod config;
pub mod io;
pub mod lobby;
pub mod map;
pub mod mapstore;
pub mod server;
pub mod stats;
pub mod users;
pub mod wire;

pub use identity::Identity as Id;