15 lines
217 B
Rust
Raw Normal View History

2018-10-02 21:48:19 +02:00
/// Contains the data needed to manage the controls of the player.
pub struct Controls {
}
impl Controls {
/// Creates the default controls.
pub fn new() -> Controls {
Controls {
}
}
}