pub trait NetComponent {
    fn add_component_channels(&mut self, cmp: ComponentChannels);
    fn start(&mut self);
}
Expand description

NetComponent Trait must be implemeneted to add a new component

Required Methods

Implementors