MOS
sounds.hpp
1 #pragma once
2 
3 #include <initializer_list>
4 #include <mos/aud/sound.hpp>
5 #include <mos/core/container.hpp>
6 
7 namespace mos::aud {
8 
10 using Sounds = Container<Sound>;
11 
12 } // namespace mos::aud
Definition: filter.hpp:13