Skip to content

Commit

Permalink
Export InputKind in prelude module (#472)
Browse files Browse the repository at this point in the history
* Expose `InputKind` in `prelude` module

* typo
  • Loading branch information
Shute052 authored Feb 19, 2024
1 parent 47f9ffd commit 687327e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- added a table detailing supported Bevy versions in the README.md
- added a feature flag `asset` allowing optional `bevy::asset::Asset` derive for the `InputMap`
- exported `InputKind` in `prelude` module

### Bugs

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub mod prelude {
pub use crate::input_mocking::MockUIInteraction;
pub use crate::input_mocking::{MockInput, QueryInput};
pub use crate::scan_codes::QwertyScanCode;
pub use crate::user_input::{Modifier, UserInput};
pub use crate::user_input::{InputKind, Modifier, UserInput};

pub use crate::plugin::InputManagerPlugin;
pub use crate::plugin::ToggleActions;
Expand Down

0 comments on commit 687327e

Please sign in to comment.