veloren/server/src/input.rs
Cody 6b09fd7c53 Pedantic comment and language fixes.
Former-commit-id: eb49765c911aaa97a9c8ed351216a7a6f8411213
2019-05-17 18:32:07 -04:00

10 lines
150 B
Rust

pub struct Input {
// TODO: Use this type to manage server input.
}
impl Default for Input {
fn default() -> Self {
Input {}
}
}