Make the hash_map mod public

This commit is contained in:
Gwilym Kuiper 2022-03-17 23:45:41 +00:00
parent a459a4811c
commit 05b8accaec

View file

@ -152,6 +152,8 @@ mod memory_mapped;
pub mod mgba;
/// Implementation of fixnums for working with non-integer values.
pub use agb_fixnum as fixnum;
/// Contains an implementation of a hashmap which suits the gameboy advance's hardware
pub mod hash_map;
mod single;
/// Implements sound output.
pub mod sound;
@ -160,8 +162,6 @@ pub mod syscall;
/// Interactions with the internal timers
pub mod timer;
mod hash_map;
#[cfg(not(test))]
#[panic_handler]
#[allow(unused_must_use)]