cctweaked-haxelib/src/cc/GPS.hx

15 lines
245 B
Haxe
Raw Normal View History

2018-03-22 03:16:51 +00:00
package cc;
@:multiReturn
extern class GPSLocation {
2021-03-22 04:24:10 +00:00
var x:Float;
var y:Float;
var z:Float;
2018-03-22 03:16:51 +00:00
}
@:native("gps")
extern class GPS {
2021-03-22 04:24:10 +00:00
public static var CHANNEL_GPS:Int;
public static function locate(?timeout:Float, ?debug:Bool):GPSLocation;
}