forked from LeenkxTeam/LNXSDK
Update Files
This commit is contained in:
31
Kha/Backends/Node/kha/js/Sound.hx
Normal file
31
Kha/Backends/Node/kha/js/Sound.hx
Normal 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();
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user