Skip to main content

codegen/
main.rs

1//! Command-line generator for manifest-authored engine content.
2
3#[global_allocator]
4static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
5
6mod app;
7mod gen_aoe;
8mod gen_aura;
9mod gen_aura_behavior;
10mod gen_aura_modifiers;
11mod gen_aura_periodic;
12mod gen_barrel;
13mod gen_build;
14mod gen_constants;
15mod gen_damage;
16mod gen_descriptor;
17mod gen_emit;
18mod gen_item_registry;
19mod gen_items;
20mod gen_proc;
21mod gen_spell_channel;
22mod gen_spell_properties;
23mod gen_spells;
24mod helpers;
25mod rust_source;
26
27fn main() -> std::process::ExitCode {
28    app::main()
29}