2017-03-15 01:07:58 +00:00
|
|
|
var Text = require('./Text');
|
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
var TextFactory = function (state, x, y, text, style)
|
|
|
|
{
|
|
|
|
return new Text(state, x, y, text, style);
|
2017-03-15 01:07:58 +00:00
|
|
|
};
|
|
|
|
|
2017-07-04 00:59:31 +00:00
|
|
|
module.exports = TextFactory;
|