Hello WWWWWWorld!

This commit is contained in:
Ethan Lee
2020-01-01 15:29:24 -05:00
commit f7c0321b71
133 changed files with 154973 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
//Non gamecenter/steam platform specific specific code belongs here
package {
//import com.sticksports.nativeExtensions.SilentSwitch;
import flash.events.*;
import flash.media.SoundMixer;
import flash.media.AudioPlaybackMode;
public class platformclass {
public function init():void {
//SilentSwitch.apply();
SoundMixer.audioPlaybackMode = AudioPlaybackMode.AMBIENT;
}
public function callonwake():void {
//SilentSwitch.apply();
wakeupcall = 1;
}
public function callonsleep():void {
}
public var wakeupcall:int;
}
}