Skip to content

Commit

Permalink
feat: make script contexts public (#193)
Browse files Browse the repository at this point in the history
  • Loading branch information
makspll authored Jan 8, 2025
1 parent e6f817c commit fc03230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/bevy_mod_scripting_core/src/context.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ pub type ContextId = u32;

#[derive(Resource)]
pub struct ScriptContexts<P: IntoScriptPluginParams> {
pub(crate) contexts: HashMap<ContextId, P::C>,
pub contexts: HashMap<ContextId, P::C>,
}

impl<P: IntoScriptPluginParams> Default for ScriptContexts<P> {
Expand Down

0 comments on commit fc03230

Please sign in to comment.