Skip to content

Commit fc03230

Browse files
authored
feat: make script contexts public (#193)
1 parent e6f817c commit fc03230

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/bevy_mod_scripting_core/src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pub type ContextId = u32;
1313

1414
#[derive(Resource)]
1515
pub struct ScriptContexts<P: IntoScriptPluginParams> {
16-
pub(crate) contexts: HashMap<ContextId, P::C>,
16+
pub contexts: HashMap<ContextId, P::C>,
1717
}
1818

1919
impl<P: IntoScriptPluginParams> Default for ScriptContexts<P> {

0 commit comments

Comments
 (0)