oxygengine_network_backend_native/
lib.rs

1extern crate oxygengine_core as core;
2extern crate oxygengine_network as network;
3
4#[cfg(test)]
5mod tests;
6
7pub mod client;
8pub mod server;
9mod utils;
10
11pub mod prelude {
12    pub use crate::client::*;
13    pub use crate::server::*;
14}