bevy/crates/bevy_internal/src
Miles Silberling-Cook 6b95b0137a
Switch monolithic lib to module re-exports (#13059)
# Objective

Makes crate module docs render correctly in the docs for the monolithic
library. Fixes https://github.com/bevyengine/bevy/issues/13055.

## Solution

Swap from
```rust
pub mod foo {
    pub use bevy_foo::*;
}
```
to
```rust
pub use bevy_foo as foo;
```
2024-04-22 01:32:51 +00:00
..
default_plugins.rs Fix ambiguities causing a crash (#12780) 2024-03-29 16:00:13 +00:00
lib.rs Switch monolithic lib to module re-exports (#13059) 2024-04-22 01:32:51 +00:00
prelude.rs Define a prelude for bevy_color, and add it to bevy_internal (#12158) 2024-02-27 17:04:56 +00:00