This commit is contained in:
Ramon Gonzalez Fernandez
2021-03-22 00:24:10 -04:00
parent b10b9e9d75
commit 74fbbfff72
22 changed files with 375 additions and 110 deletions

View File

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