main/
lib.rs

1//! Starting point for the game engine as a library
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/// Implementation specific starting points
13mod start;
14
15/// Prepare the game engine for running
16mod setup;
17
18/// Module for storing and using build data
19mod build;
20
21/// Module for storing resources
22mod resources;