mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
19 lines
355 B
JavaScript
19 lines
355 B
JavaScript
var Class = require('../utils/Class');
|
|
var SoundEvent = require('./SoundEvent');
|
|
|
|
var SoundValueEvent = new Class({
|
|
|
|
Extends: SoundEvent,
|
|
|
|
initialize:
|
|
|
|
function SoundValueEvent (sound, type, value)
|
|
{
|
|
SoundEvent.call(this, sound, type);
|
|
|
|
this.value = value;
|
|
}
|
|
|
|
});
|
|
|
|
module.exports = SoundValueEvent;
|