9 lines
132 B
D
9 lines
132 B
D
module arsd.simpleaudio;
|
|
|
|
struct AudioOutputThread {
|
|
this(int) {}
|
|
void start() {}
|
|
void beep(int = 0) {}
|
|
void boop(int = 0) {}
|
|
}
|