veloren/client/src/input.rs
Joshua Barretto dbbcc1e80e Added basic networked communications, chat communication
Former-commit-id: 06bafdf69486f4da5fbc416835e34c5bed8c2caa
2019-03-04 19:58:58 +00:00

15 lines
236 B
Rust

use vek::*;
pub struct Input {
// TODO: Use this type to manage client input
pub move_dir: Vec2<f32>,
}
impl Default for Input {
fn default() -> Self {
Input {
move_dir: Vec2::zero(),
}
}
}