catgirl_engine_utils/
lib.rs

1//! Utilities for 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#[allow(unused_imports)]
10#[macro_use]
11extern crate tracing;
12
13/// Module for macros
14#[macro_use]
15mod macros;
16
17/// Module for handling translations
18pub mod i18n;
19
20/// Module for command line arguments
21pub mod args;
22
23/// Module for storing and using resources
24pub mod resources;
25
26/// Module for storing and using build data
27pub mod build;
28
29/// Module for reading the environment variables
30pub mod environment;
31
32/// Module for handling the exit state of the engine
33pub mod exit;
34
35/// Module for handling strings
36pub mod string;