logic_constructor 0.1.0

Move combat and ability logic out of code and into HOCON config — designers tweak damage, healing, and targeting in a text file; the engine parses it into typed actions and runs them against your entities.
Documentation
1
2
3
4
5
6
7
8
9
pub mod collision_kind_parser;
pub mod lc_action_config_parser;
pub mod lc_config_list_parser;
pub mod lc_config_parser;

pub use collision_kind_parser::parse_collision_kind;
pub use lc_action_config_parser::parse_lc_action_config;
pub use lc_config_list_parser::{parse_lc_config_list, parse_lc_config_list_raw};
pub use lc_config_parser::{parse_lc_config, parse_lc_config_raw};