diff options
| author | Daniel Schadt <kingdread@gmx.de> | 2020-04-29 13:37:50 +0200 |
|---|---|---|
| committer | Daniel Schadt <kingdread@gmx.de> | 2020-04-29 13:37:50 +0200 |
| commit | 52f20f5fa0e27e4687c868ec684a0af5a4fca62f (patch) | |
| tree | b9ab065f4c21e58479c29b65478d3c219d7fb514 /src | |
| parent | 8a9f79ff7ad5ac28a752321e578185d8f3a745bc (diff) | |
| download | evtclib-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.
Diffstat (limited to 'src')
| -rw-r--r-- | src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ use thiserror::Error; pub mod raw; -mod event; +pub mod event; pub use event::{Event, EventKind}; pub mod gamedata; |
