pub trait PropertyMutate: PropertyMutateClone + Send + Sync + 'static {
    fn mutate(&mut self, property_index: u8);
}
Expand description

Tracks which Properties have changed and need to be queued for syncing with the Client

Required methods

Given the index of the Property whose value has changed, queue that Property for transmission to the Client

Implementors