Preparing things

This commit is contained in:
2018-10-02 21:48:19 +02:00
parent 4485a7d935
commit eaefcd3272
7 changed files with 337 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
/// 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 {
}
}
}