1
2
3
4
5
6
7
8
9
10
11
12
13
14
extern crate oxygengine_core as core;
extern crate oxygengine_network as network;

#[cfg(test)]
mod tests;

pub mod client;
pub mod server;
mod utils;

pub mod prelude {
    pub use crate::client::*;
    pub use crate::server::*;
}