canyon_entities/
lib.rs

1use crate::register_types::CanyonRegisterEntity;
2use std::sync::Mutex;
3
4pub mod entity;
5pub mod entity_fields;
6pub mod field_annotation;
7pub mod manager_builder;
8pub mod register_types;
9
10pub static CANYON_REGISTER_ENTITIES: Mutex<Vec<CanyonRegisterEntity<'static>>> =
11    Mutex::new(Vec::new());