naia-server 0.25.0

A server that uses either UDP or WebRTC communication to send/receive messages to/from connected clients, and syncs registered Entities/Components to clients to whom they are in-scope.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[allow(clippy::module_inception)]
mod server;
pub use server::Server;

mod server_config;
pub use server_config::ServerConfig;

mod main_server;
pub use main_server::MainServer;
pub mod world_server;
pub use world_server::WorldServer;

mod scope_checks_cache;
mod scope_change;
mod room_store;
mod user_store;