Spaces:
Running
Running
| pub mod core; | |
| pub mod py_bindings; | |
| pub mod wasm_bindings; | |
| mod tests; | |
| mod mechanics_tests; | |
| mod baton_pass_tests; | |
| mod structural_tests; | |
| mod deck_refresh_tests; | |
| mod ability_tests; | |
| mod opcode_tests; | |
| use pyo3::prelude::*; | |
| fn engine_rust(m: &Bound<'_, PyModule>) -> PyResult<()> { | |
| py_bindings::register_python_module(m) | |
| } | |