Fixed immediate warnings

This commit is contained in:
michael-bailey 2021-03-11 14:06:05 +00:00 committed by michael bailey
parent e082971df0
commit 3591318270
1 changed files with 3 additions and 3 deletions

View File

@ -6,8 +6,8 @@ use uuid::Uuid;
* @michael-bailey
*/
pub trait TClientManager<TClient,TClientMessage> {
fn addClient(&self, client: Arc<TClient>);
fn removeClient(&self, id: Uuid);
fn messageClient(&self, id: Uuid, msg: TClientMessage);
fn add_client(&self, client: Arc<TClient>);
fn remove_client(&self, id: Uuid);
fn message_client(&self, id: Uuid, msg: TClientMessage);
fn tick(&self, );
}