mirror of
https://github.com/photonstorm/phaser
synced 2024-11-21 20:23:19 +00:00
Fixed FB Plugin paths to avoid build errors if plugin is enabled.
This commit is contained in:
parent
a6e650f26f
commit
a103b0e6a6
4 changed files with 4 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
|||
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||
*/
|
||||
|
||||
var Class = require('../utils/Class');
|
||||
var Class = require('../../../src/utils/Class');
|
||||
var EventEmitter = require('eventemitter3');
|
||||
var LeaderboardScore = require('./LeaderboardScore');
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||
*/
|
||||
|
||||
var GetFastValue = require('../utils/object/GetFastValue');
|
||||
var GetFastValue = require('../../../src/utils/object/GetFastValue');
|
||||
|
||||
/**
|
||||
* @classdesc
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
||||
*/
|
||||
|
||||
var GetFastValue = require('../utils/object/GetFastValue');
|
||||
var GetFastValue = require('../../../src/utils/object/GetFastValue');
|
||||
|
||||
var Purchase = function (data)
|
||||
{
|
||||
|
|
|
@ -34,7 +34,7 @@ if (typeof EXPERIMENTAL)
|
|||
|
||||
if (typeof PLUGIN_FBINSTANT)
|
||||
{
|
||||
var FacebookInstantGamesPlugin = require('../fbinstant/FacebookInstantGamesPlugin');
|
||||
var FacebookInstantGamesPlugin = require('../../plugins/fbinstant/src/FacebookInstantGamesPlugin');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue