aboutsummaryrefslogtreecommitdiff
path: root/minecraft-chat/src/mutable_component.rs
blob: d294e3b3902ca3c730fb402b7a5bb7ed7c8d4ee8 (plain)
1
2
3
4
5
6
use crate::{base_component::BaseComponent, component::Component};

pub trait MutableComponent {
    /// Add a component as a sibling of this one
    fn append(&self, component: Component);
}