#![allow(missing_docs)] use crate::config;
#[derive(Debug, Clone, PartialEq, derive_asset_container::AssetManager, property::Property, serde::Serialize)]
#[property(get(public), set(private), mut(disable))]
#[asset(asset(config::AssetReference))]
pub struct TypesComponent {
pub(crate) reference: config::AssetReference,
#[asset(skip)]
#[serde(skip_serializing_if = "Vec::is_empty")]
pub(crate) types: Vec<String>,
}