rust/hedgewars-server/src/handlers/checker.rs
author Wuzzy <Wuzzy2@mail.ru>
Sun, 15 Sep 2019 15:20:35 +0200
changeset 15406 bf49f26b1fa9
parent 15125 febccab419b1
permissions -rw-r--r--
Set crate probability to 0 in Racer game scheme

use log::*;
use mio;

use crate::{
    core::{server::HwServer, types::ClientId},
    protocol::messages::HwProtocolMessage,
};

pub fn handle(_server: &mut HwServer, _client_id: ClientId, message: HwProtocolMessage) {
    match message {
        _ => warn!("Unknown command"),
    }
}