1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
//! 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;