1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-14 16:53:38 +02:00
VVVVVV/mobile_version/src/platformclass.as

22 lines
453 B
ActionScript
Raw Permalink Normal View History

2020-01-01 21:29:24 +01:00
//Non gamecenter/steam platform specific specific code belongs here
package {
//import com.sticksports.nativeExtensions.SilentSwitch;
import flash.events.*;
public class platformclass {
public function init():void {
//SilentSwitch.apply();
}
public function callonwake():void {
//SilentSwitch.apply();
wakeupcall = 1;
}
public function callonsleep():void {
}
public var wakeupcall:int;
}
}