mirror of
https://github.com/lightsoutgames/bevy_openal.git
synced 2024-11-21 08:55:56 +00:00
Expose private resource until we have multi-stage asset-loading.
This commit is contained in:
parent
d102012712
commit
37bc104be1
|
@ -101,8 +101,9 @@ impl AssetLoader for BufferAssetLoader {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Make non-public when we have multi-stage asset loading.
|
||||||
#[derive(Default)]
|
#[derive(Default)]
|
||||||
struct Buffers(HashMap<HandleId, Arc<alto::Buffer>>);
|
pub struct Buffers(pub HashMap<HandleId, Arc<alto::Buffer>>);
|
||||||
|
|
||||||
fn buffer_creation(
|
fn buffer_creation(
|
||||||
context: Res<Context>,
|
context: Res<Context>,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user