kernel/fixture.rs
1//! # Fixture Engine
2//!
3//! This module provides the core actor-based [`FixtureEngine`] responsible for
4//! managing fixture instances, tracking DMX channel reservations across universes,
5//! and processing asynchronous commands (such as spawning, moving, or updating properties).
6mod fixture_engine;
7mod fixture_command;
8
9pub use fixture_engine::{get_fixture_type, move_fixture, new_fixture, remove_fixture, set_property, FixtureEngine};