veloren/server/src/input.rs

10 lines
149 B
Rust
Raw Normal View History

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