remove pub from functions

This commit is contained in:
griffi-gh 2023-02-13 02:01:25 +01:00
parent 2818e157b1
commit 1b476819d8

View file

@ -1,4 +1,4 @@
use shipyard::{Unique, AllStoragesView, UniqueView, UniqueViewMut, Workload, IntoWorkload, EntitiesViewMut, Component, ViewMut, SystemModificator}; use shipyard::{Unique, AllStoragesView, UniqueView, UniqueViewMut, Workload, IntoWorkload, EntitiesViewMut, Component, ViewMut, SystemModificator, View, IntoIter};
use glium::glutin::event_loop::ControlFlow; use glium::glutin::event_loop::ControlFlow;
use std::net::SocketAddr; use std::net::SocketAddr;
use kubi_udp::client::{Client, ClientConfig, ClientEvent}; use kubi_udp::client::{Client, ClientConfig, ClientEvent};
@ -24,7 +24,7 @@ pub struct UdpClient(pub Client<ClientToServerMessage, ServerToClientMessage>);
#[derive(Component)] #[derive(Component)]
pub struct NetworkEvent(pub ClientEvent<ServerToClientMessage>); pub struct NetworkEvent(pub ClientEvent<ServerToClientMessage>);
pub fn create_client( fn create_client(
storages: AllStoragesView storages: AllStoragesView
) { ) {
log::info!("Creating client"); log::info!("Creating client");
@ -36,7 +36,7 @@ pub fn create_client(
storages.add_unique(ClientJoinState::Disconnected); storages.add_unique(ClientJoinState::Disconnected);
} }
pub fn connect_client_if_needed( fn connect_client_if_needed(
mut client: UniqueViewMut<UdpClient> mut client: UniqueViewMut<UdpClient>
) { ) {
//NOTE: this used to be a condition function //NOTE: this used to be a condition function
@ -47,13 +47,13 @@ pub fn connect_client_if_needed(
} }
} }
pub fn update_client( fn update_client(
mut client: UniqueViewMut<UdpClient>, mut client: UniqueViewMut<UdpClient>,
) { ) {
client.0.update().unwrap(); client.0.update().unwrap();
} }
pub fn insert_client_events( fn insert_client_events(
mut client: UniqueViewMut<UdpClient>, mut client: UniqueViewMut<UdpClient>,
mut entities: EntitiesViewMut, mut entities: EntitiesViewMut,
mut events: ViewMut<EventComponent>, mut events: ViewMut<EventComponent>,