Add new script hexen_haus support

This commit is contained in:
2025-07-25 09:24:01 +08:00
parent a77e107872
commit 968abeec6d
6 changed files with 264 additions and 3 deletions

View File

@@ -9,6 +9,8 @@ pub mod cat_system;
pub mod circus;
#[cfg(feature = "escude")]
pub mod escude;
#[cfg(feature = "hexen-haus")]
pub mod hexen_haus;
#[cfg(feature = "kirikiri")]
pub mod kirikiri;
#[cfg(feature = "will-plus")]
@@ -76,6 +78,8 @@ lazy_static::lazy_static! {
Box::new(artemis::ast::AstScriptBuilder::new()),
#[cfg(feature = "artemis")]
Box::new(artemis::asb::ArtemisAsbBuilder::new()),
#[cfg(feature = "hexen-haus")]
Box::new(hexen_haus::bin::BinScriptBuilder::new()),
];
pub static ref ALL_EXTS: Vec<String> =
BUILDER.iter().flat_map(|b| b.extensions()).map(|s| s.to_string()).collect();