Skip to content

Commit 99c5053

Browse files
Added BaseSound class description
1 parent 28bf61f commit 99c5053

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

src/sound/BaseSound.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var NOOP = require('../utils/NOOP');
1111

1212
/**
1313
* @classdesc
14-
* [description]
14+
* Class containing all the shared state and behaviour of a sound object, independent of the implementation.
1515
*
1616
* @class BaseSound
1717
* @extends EventEmitter
@@ -410,7 +410,7 @@ var BaseSound = new Class({
410410
*
411411
* @method Phaser.Sound.BaseSound#pause
412412
* @since 3.0.0
413-
*
413+
*
414414
* @return {boolean} Whether the sound was paused successfully.
415415
*/
416416
pause: function ()
@@ -431,7 +431,7 @@ var BaseSound = new Class({
431431
*
432432
* @method Phaser.Sound.BaseSound#resume
433433
* @since 3.0.0
434-
*
434+
*
435435
* @return {boolean} Whether the sound was resumed successfully.
436436
*/
437437
resume: function ()
@@ -452,7 +452,7 @@ var BaseSound = new Class({
452452
*
453453
* @method Phaser.Sound.BaseSound#stop
454454
* @since 3.0.0
455-
*
455+
*
456456
* @return {boolean} Whether the sound was stopped successfully.
457457
*/
458458
stop: function ()
@@ -503,7 +503,7 @@ var BaseSound = new Class({
503503
* @override
504504
* @protected
505505
* @since 3.0.0
506-
*
506+
*
507507
* @param {number} time - The current timestamp as generated by the Request Animation Frame or SetTimeout.
508508
* @param {number} delta - The delta time elapsed since the last frame.
509509
*/

0 commit comments

Comments
 (0)