Skip to content

Commit

Permalink
Hide DebugInputEvent
Browse files Browse the repository at this point in the history
  • Loading branch information
subalterngames committed Aug 18, 2024
1 parent b9bf5e6 commit 934c956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion input/src/debug_input_event.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
use crate::InputEvent;

#[cfg(debug_assertions)]
pub enum DebugInputEvent {
pub(crate) enum DebugInputEvent {
InputEvent(InputEvent),
Alphanumeric(char),
}
2 changes: 1 addition & 1 deletion input/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ mod qwerty_binding;
use common::args::Args;
use common::{State, MAX_NOTE, MIN_NOTE};
#[cfg(debug_assertions)]
pub use debug_input_event::DebugInputEvent;
use debug_input_event::DebugInputEvent;
use hashbrown::HashMap;
use ini::Ini;
pub use input_event::InputEvent;
Expand Down

0 comments on commit 934c956

Please sign in to comment.