pub trait NetEntityHandleConverter {
// Required methods
fn handle_to_net_entity(
&self,
entity_handle: &EntityHandle
) -> Result<OwnedNetEntity, EntityDoesNotExistError>;
fn net_entity_to_handle(
&self,
net_entity: &OwnedNetEntity
) -> Result<EntityHandle, EntityDoesNotExistError>;
}