Fix ambigious path
This commit is contained in:
parent
a4fbb35461
commit
8e717b4974
2 changed files with 2 additions and 2 deletions
|
@ -2,7 +2,7 @@ mod entity;
|
|||
mod entity_object_manager;
|
||||
mod events;
|
||||
pub mod get_disjoint_mut;
|
||||
mod resources;
|
||||
pub mod resources;
|
||||
mod type_map;
|
||||
mod unsafe_component_store;
|
||||
mod updates;
|
||||
|
|
|
@ -123,6 +123,6 @@ pub fn derive_resource(input: TokenStream) -> TokenStream {
|
|||
let implementor = ast.ident;
|
||||
|
||||
TokenStream::from(quote! {
|
||||
impl ecs::Resource for #implementor {}
|
||||
impl ecs::resources::Resource for #implementor {}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue