Files
cctweaked-haxelib/src/cc/periphs/Speaker.hx
Ramon Gonzalez Fernandez dcad97c81b update periphs to not be static
2021-04-12 13:38:27 -04:00

7 lines
281 B
Haxe

package cc.periphs;
extern class Speaker {
public function playSound(name:String, ?volume:Float, ?pitch:Float):Bool; // Plays a sound through the speaker.
public function playNote(name:String, ?volume:Float, ?pitch:Float):Bool; // Plays a note block note through the speaker.
}