catgirl_engine_server/
lib.rs

1//! Server side component of the game engine
2#![warn(missing_docs)]
3#![doc(
4    html_favicon_url = "https://engine.catgirl.land/resources/assets/vanilla/texture/logo/logo.svg",
5    html_logo_url = "https://engine.catgirl.land/resources/assets/vanilla/texture/logo/logo.svg",
6    html_playground_url = "https://play.rust-lang.org"
7)]
8
9#[macro_use]
10extern crate tracing;
11
12/// Module for storing and using build data
13pub mod build;
14
15/// Handles server side game logic
16pub mod game;