We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c7b73b commit dbea4d2Copy full SHA for dbea4d2
1 file changed
v3/src/sound/BaseSound.js
@@ -2,8 +2,17 @@ var Class = require('../utils/Class');
2
var Extend = require('../utils/object/Extend');
3
var EventDispatcher = require('../events/EventDispatcher');
4
var NOOP = require('../utils/NOOP');
5
-// Phaser.Sound.BaseSound
+/*!
6
+ * @author Pavle Goloskokovic <pgoloskokovic@gmail.com> (http://prunegames.com)
7
+ */
8
var BaseSound = new Class({
9
+ /**
10
+ * @class Phaser.Sound.BaseSound
11
+ * @constructor
12
+ * @param {ISoundManager} manager - Reference to the current sound manager instance.
13
+ * @param {string} key - Asset key for the sound.
14
+ * @param {ISoundConfig} [config] - An optional config object containing default sound settings.
15
16
initialize: function BaseSound(manager, key, config) {
17
/**
18
* Local reference to the sound manager.
0 commit comments