We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca05cce commit b27dc46Copy full SHA for b27dc46
crates/languages/bevy_mod_scripting_rune/src/lib.rs
@@ -16,11 +16,11 @@ pub struct RuneScriptContext {
16
17
pub type RuneRuntime = Vm;
18
19
-pub struct RuneScriptingPlugin<A: RuneEventArg> {
20
- pub scripting_plugin: ScriptingPlugin<A, RuneScriptContext, RuneRuntime>,
+pub struct RuneScriptingPlugin {
+ pub scripting_plugin: ScriptingPlugin<RuneScriptContext, RuneRuntime>,
21
}
22
23
-impl<A: RuneEventArg> Default for RuneScriptingPlugin<A> {
+impl Default for RuneScriptingPlugin {
24
fn default() -> Self {
25
Self {
26
scripting_plugin: ScriptingPlugin {
0 commit comments