1
0
Fork 0
mirror of https://github.com/sbrl/soundbox.git synced 2018-01-10 21:33:43 +00:00
soundbox/README.md

13 lines
193 B
Markdown

# soundbox
A super simple JS library for playing sound effects
To use:
```javascript
var soundbox = new SoundBox();
soundbox.add("beep", "beep.wav");
// later....
soundbox.play("beep");
```