bevy_state: Make reflect module public (#14667)

# Objective

CI is
[failing](https://github.com/bevyengine/bevy/actions/runs/10308658332/job/28536587448)
due to certain methods not being used.

## Solution

Make the `reflect` module public so that these warnings go away and so
that the `pub` items in these modules can be used.

## Testing

CI should pass.
This commit is contained in:
Gino Valente 2024-08-08 13:15:38 -07:00 committed by GitHub
parent 8c2e70b744
commit 3f47273b72
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -41,7 +41,7 @@ pub mod state_scoped;
#[cfg(feature = "bevy_reflect")]
/// Provides definitions for the basic traits required by the state system
mod reflect;
pub mod reflect;
/// Most commonly used re-exported types.
pub mod prelude {