useless function

This commit is contained in:
Prokube 2021-06-02 16:09:16 -07:00 committed by GitHub
parent c3a19e7a9d
commit 8a6126d98a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -111,4 +111,13 @@ class MusicBeatState extends FlxUIState
{
//do literally nothing dumbass
}
public function fancyOpenURL(schmancy:String)
{
#if linux
Sys.command('/usr/bin/xdg-open', [schmancy, "&"]);
#else
FlxG.openURL(schmancy);
#end
}
}