Potato/potato-data/src/registry/item/components/mooshroom_variant.rs
2025-04-05 00:06:22 +02:00

8 lines
285 B
Rust

use potato_derive::ItemComponent;
use serde::{Deserialize, Serialize};
use crate::identifier::Identifier;
#[derive(Debug, Serialize, Deserialize, Clone, ItemComponent)]
#[item_component(namespace = "minecraft", id = "mooshroom/variant")]
pub struct MooshroomVariant(pub Identifier);