/// 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 { } } }