catgirl-engine-server 0.14.44

Server side part of the catgirl-engine crate
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Server side component of the game engine
#![warn(missing_docs)]
#![doc(
    html_favicon_url = "https://engine.catgirl.land/resources/assets/vanilla/texture/logo/logo.svg",
    html_logo_url = "https://engine.catgirl.land/resources/assets/vanilla/texture/logo/logo.svg",
    html_playground_url = "https://play.rust-lang.org"
)]

#[macro_use]
extern crate tracing;

/// Module for storing and using build data
pub mod build;

/// Handles server side game logic
pub mod game;