renet2_netcode 0.15.0

Netcode integration for renet2
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(all(feature = "wt_client_transport", target_family = "wasm"))]
mod client;

#[cfg(all(feature = "wt_server_transport", not(target_family = "wasm")))]
mod server;

mod utils;

#[cfg(all(feature = "wt_client_transport", target_family = "wasm"))]
pub use client::*;

#[cfg(all(feature = "wt_server_transport", not(target_family = "wasm")))]
pub use server::*;

pub use utils::*;