tm_rs/components/
light.rs1use crate::component::Component;
2use tm_sys::ffi::{tm_light_component_t, TM_TT_TYPE__LIGHT_COMPONENT};
3
4pub struct LightComponent;
5
6impl Component for LightComponent {
7 const NAME: &'static [u8] = TM_TT_TYPE__LIGHT_COMPONENT;
8 type CType = tm_light_component_t;
9}