mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 09:03:29 +00:00
12 lines
191 B
JavaScript
12 lines
191 B
JavaScript
|
var Bob = function (blitter, x, y, frame, visible)
|
||
|
{
|
||
|
this.parent = blitter;
|
||
|
|
||
|
this.x = x;
|
||
|
this.y = y;
|
||
|
this.frame = frame;
|
||
|
this.visible = visible;
|
||
|
};
|
||
|
|
||
|
module.exports = Bob;
|