Update Files

This commit is contained in:
2025-01-22 16:18:30 +01:00
parent ed4603cf95
commit a36294b518
16718 changed files with 2960346 additions and 0 deletions

View File

@ -0,0 +1,31 @@
package kha.js;
class SoundChannel extends kha.SoundChannel {
public function new() {
super();
}
override public function play(): Void {
super.play();
}
override public function pause(): Void {}
override public function stop(): Void {
super.stop();
}
override public function getCurrentPos(): Int {
return 0;
}
override public function getLength(): Int {
return 0;
}
}
class Sound extends kha.Sound {
public function new() {
super();
}
}