8 lines
285 B
Rust
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);
|