Skip to main content

arcane_core/scripting/
mod.rs

1mod module_loader;
2mod runtime;
3mod test_runner;
4pub mod physics_ops;
5pub mod replay_ops;
6
7#[cfg(feature = "renderer")]
8pub mod render_ops;
9
10#[cfg(feature = "renderer")]
11pub mod geometry_ops;
12
13#[cfg(feature = "renderer")]
14pub mod particle_ops;
15
16#[cfg(feature = "renderer")]
17pub mod target_ops;
18
19pub use module_loader::{ImportMap, TsModuleLoader};
20pub use runtime::ArcaneRuntime;
21pub use test_runner::{TestResult, TestSummary, run_test_file, run_test_file_with_import_map};