1 2 3 4 5 6 7 8 9 10
use crate::common::NetConnectionType; use crate::network::NetConnection; pub fn net_connections() -> Vec<NetConnection> { todo!() } pub fn net_connections_with_type(_type: NetConnectionType) -> Vec<NetConnection> { todo!() }