phaser/v3/src/components/Texture.js

18 lines
263 B
JavaScript
Raw Normal View History

// Texture Component
var Texture = function (gameObject, texture, frame)
{
this.gameObject = gameObject;
this.texture = texture;
this.frame = frame;
};
Texture.prototype.constructor = Texture;
Texture.prototype = {
};
module.exports = Texture;