glossa-cli 0.0.0

A command-line (binary) tool that generates Rust source code or bincode files containing localized text by calling the glossa-codegen API.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
pub(crate) const fn map(key: &[u8]) -> &'static str {
  match key {
    b"include_languages" => {
      r#####"allow list mode: only initialise listed language IDs"#####
    }
    b"include_map_names" => {
      r#####"allow list mode: only initialise listed map names"#####
    }
    b"input" => r#####"source directory of localisation resources"#####,
    b"true_color" => r#####"24-bit true colour"#####,
    _ => "",
  }
}