mirror of
https://github.com/photonstorm/phaser
synced 2025-01-09 11:48:50 +00:00
9 lines
100 B
JavaScript
9 lines
100 B
JavaScript
|
var Init = function ()
|
||
|
{
|
||
|
this.state = 1;
|
||
|
|
||
|
return (!this.paused);
|
||
|
};
|
||
|
|
||
|
module.exports = Init;
|