Skip to main content

euv_engine/audio/
enum.rs

1use super::*;
2
3/// Represents the playback state of an audio clip.
4#[derive(Clone, Copy, Debug, Default, Eq, PartialEq)]
5pub enum AudioPlayState {
6    /// The audio is currently playing.
7    #[default]
8    Playing,
9    /// The audio is paused and can be resumed.
10    Paused,
11    /// The audio has stopped or finished playing.
12    Stopped,
13}