use crate::model::Sample; use std::sync::Arc; /// A container for audio assets. /// /// A SoundBank stores multiple audio samples that can be played by the /// audio subsystem. pub struct SoundBank { pub samples: Vec>, } impl SoundBank { pub fn new(samples: Vec>) -> Self { Self { samples } } }