libaurex 0.1.1

Cross-platform high-level audio API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// pub enum PlayerState {
//     Stopped,
//     Playing,
//     Paused,
//     Error
// }

// pub struct Player {
//     decoder: miniaudio::ma_decoder,
//     device: miniaudio::ma_device,
//     state: i32
// }

// impl Player {
//     fn new () -> Self {
//         Self { decoder: (), device: (), state: () }
//     }
// }