mirror of
https://github.com/photonstorm/phaser
synced 2024-12-24 12:03:36 +00:00
17 lines
420 B
JavaScript
17 lines
420 B
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2018 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
var AdInstance = function (instance, video)
|
|
{
|
|
return {
|
|
instance: instance,
|
|
placementID: instance.getPlacementID(),
|
|
shown: false,
|
|
video: video
|
|
};
|
|
};
|
|
|
|
module.exports = AdInstance;
|