mirror of
https://github.com/photonstorm/phaser
synced 2025-01-27 20:35:15 +00:00
d804e056ed
This is one monster update.
8 lines
243 B
JavaScript
8 lines
243 B
JavaScript
var BitmapText = require('./DynamicBitmapText');
|
|
|
|
var DynamicBitmapTextFactory = function (scene, x, y, font, text, size, align)
|
|
{
|
|
return new BitmapText(scene, x, y, font, text, size, align);
|
|
};
|
|
|
|
module.exports = DynamicBitmapTextFactory;
|