mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-05 14:24:28 +00:00
19 lines
314 B
Haxe
19 lines
314 B
Haxe
package funkin.util;
|
|
|
|
class WindowUtil
|
|
{
|
|
public static function openURL(targetUrl:String)
|
|
{
|
|
#if CAN_OPEN_LINKS
|
|
#if linux
|
|
// Sys.command('/usr/bin/xdg-open', [, "&"]);
|
|
Sys.command('/usr/bin/xdg-open', [targetUrl, "&"]);
|
|
#else
|
|
FlxG.openURL(targetUrl);
|
|
#end
|
|
#else
|
|
trace('Cannot open')
|
|
#end
|
|
}
|
|
}
|