mirror of
https://github.com/photonstorm/phaser
synced 2024-12-23 19:43:28 +00:00
11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
|
var Graphics = require('./Graphics');
|
||
|
var GetAdvancedValue = require('../../utils/object/GetAdvancedValue');
|
||
|
var BuildGameObject = require('../BuildGameObject');
|
||
|
|
||
|
var GraphicsCreator = function (state, config)
|
||
|
{
|
||
|
return new Graphics(state, config);
|
||
|
};
|
||
|
|
||
|
module.exports = GraphicsCreator;
|