Skip to content

Commit 27455ba

Browse files
committed
missing type dependency
1 parent 179699b commit 27455ba

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

crates/bevy_mod_scripting_core/src/bindings/function/type_dependencies.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ use super::{
44
from::{Mut, Ref, Union, Val},
55
script_function::FunctionCallContext, DynamicScriptFunction, DynamicScriptFunctionMut,
66
};
7-
use crate::
8-
bindings::{ReflectReference, ScriptValue}
7+
use crate::{
8+
bindings::{ReflectReference, ScriptValue}, error::InteropError}
99
;
1010
use bevy::reflect::{FromReflect, GetTypeRegistration, TypeRegistry, Typed};
1111
use bevy_mod_scripting_derive::impl_get_type_dependencies;
@@ -27,7 +27,7 @@ macro_rules! impl_get_type_dependencies_primitives {
2727

2828
impl_get_type_dependencies_primitives!(
2929
i8, i16, i32, i64, i128, u8, u16, u32, u64, u128, usize, isize, f32, f64, bool,
30-
ScriptValue, DynamicScriptFunction, DynamicScriptFunctionMut,
30+
ScriptValue, DynamicScriptFunction, DynamicScriptFunctionMut, InteropError,
3131
String, PathBuf, OsString, char
3232
);
3333

0 commit comments

Comments
 (0)