UNPKG

audio2d

Version:

Easy to use API to add the power of web audio to your game.

10 lines (9 loc) 177 B
'use strict' /** * The states that an audio clip can be in. */ export enum AudioClipState { STOPPED = "STOPPED", PLAYING = "PLAYING", PAUSED = "PAUSED" }