Skip to content

Commit

Permalink
make SystemSchedule public
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobhellermann committed Feb 6, 2023
1 parent b6b05db commit 0b8d4a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_ecs/src/schedule_v3/executor/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ pub enum ExecutorKind {
/// Since the arrays are sorted in the same order, elements are referenced by their index.
/// `FixedBitSet` is used as a smaller, more efficient substitute of `HashSet<usize>`.
#[derive(Default)]
pub(super) struct SystemSchedule {
pub struct SystemSchedule {
pub(super) systems: Vec<BoxedSystem>,
pub(super) system_conditions: Vec<Vec<BoxedCondition>>,
pub(super) set_conditions: Vec<Vec<BoxedCondition>>,
Expand Down

0 comments on commit 0b8d4a2

Please sign in to comment.