mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2025-09-01 03:15:53 +00:00
18 lines
363 B
Haxe
18 lines
363 B
Haxe
package funkin.external.ios;
|
|
|
|
#if ios
|
|
/**
|
|
* A Utility class to manage iOS audio.
|
|
*/
|
|
@:build(funkin.util.macro.LinkerMacro.xml('project/Build.xml'))
|
|
@:include('AudioSession.hpp')
|
|
@:unreflective
|
|
extern class AudioSession
|
|
{
|
|
@:native('initialize')
|
|
static function initialize():Void;
|
|
@:native('setActive')
|
|
static function setActive(active:Bool):Void;
|
|
}
|
|
#end
|