You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
342 B
15 lines
342 B
pub mod asset_loading; |
|
pub mod block; |
|
pub mod network; |
|
pub mod player; |
|
|
|
pub mod prelude { |
|
pub use crate::network; |
|
|
|
pub use crate::block::*; |
|
pub use crate::network::protocol::*; |
|
pub use crate::player::*; |
|
|
|
// Allows use of the `App::load_resource` extension trait function. |
|
pub use crate::asset_loading::LoadResource; |
|
}
|
|
|