qwac 0.29.0

Rust client crate for making qwac games
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use super::{Output, Slot};

/// The audio destination
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
pub struct DestinationNode;

impl Slot for DestinationNode {
    fn id(&self) -> i32 {
        0
    }
}

impl Output for DestinationNode {}