mirror of
https://github.com/bevyengine/bevy
synced 2024-11-24 21:53:07 +00:00
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:
parent
8c2e70b744
commit
3f47273b72
1 changed files with 1 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue