15 lines
217 B
Rust
15 lines
217 B
Rust
|
|
||
|
/// 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 {
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|