aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2020-04-29 13:37:50 +0200
committerDaniel Schadt <kingdread@gmx.de>2020-04-29 13:37:50 +0200
commit52f20f5fa0e27e4687c868ec684a0af5a4fca62f (patch)
treeb9ab065f4c21e58479c29b65478d3c219d7fb514
parent8a9f79ff7ad5ac28a752321e578185d8f3a745bc (diff)
downloadevtclib-52f20f5fa0e27e4687c868ec684a0af5a4fca62f.tar.gz
evtclib-52f20f5fa0e27e4687c868ec684a0af5a4fca62f.tar.bz2
evtclib-52f20f5fa0e27e4687c868ec684a0af5a4fca62f.zip
make event submodule public
The module contains some useful structs which were otherwise not exposed in the public API, so it's better to make it public. The re-export of Event and EventKind can stay, for convenience.
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 82ecf7e..b99d6a7 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -25,7 +25,7 @@ use thiserror::Error;
pub mod raw;
-mod event;
+pub mod event;
pub use event::{Event, EventKind};
pub mod gamedata;