lightyear 0.3.0

Server-client networking library for the Bevy game engine
Documentation
//! Defines the Server bevy resource
//!
//! # Server
//! The server module contains all the code that is used to run the server.

pub mod config;

mod connection;

pub mod events;

mod input;

pub mod plugin;

pub mod resource;

pub mod room;

mod systems;