use mingling::picker::parselib::{ParserStyle, WINDOWS_STYLE}; use mingling::setup::picker::HelpFlagSetup; use tscn_to_bsn::ThisProgram; use tscn_to_bsn::cmd::CommandsSetup; use tscn_to_bsn::res::gd_proj_dir::GodotProjectSetup; fn main() { let mut program = ThisProgram::new(); ParserStyle::set_global_style(&WINDOWS_STYLE); program.with_setup(HelpFlagSetup::default()); program.with_setup(CommandsSetup); program.with_setup(GodotProjectSetup); program.exec_and_exit(); }