parent
71f9ed2835
commit
9fc9f028d1
5 changed files with 15 additions and 8 deletions
@ -1,3 +1,11 @@ |
||||
pub mod asset_loading; |
||||
pub mod block; |
||||
pub mod network; |
||||
|
||||
// This is mostly just re-exportings things for now, but in the future
|
||||
// we might want to limit what gets exposed by the `prelude` module.
|
||||
pub mod prelude { |
||||
pub use super::asset_loading::LoadResource; |
||||
pub use super::block::*; |
||||
pub use super::network; |
||||
} |
||||
|
||||
Loading…
Reference in new issue