8 lines
282 B
Rust
8 lines
282 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 = "note_block_sound")]
|
|
pub struct NoteBlockSound(pub Identifier);
|