mirror of
https://github.com/photonstorm/phaser
synced 2025-01-11 04:38:51 +00:00
123c8f8127
Thanks to gdomaradzki for bringing this one to my attention!
15 lines
183 B
JavaScript
15 lines
183 B
JavaScript
|
|
module.exports = {
|
|
|
|
PENDING: 0,
|
|
INIT: 1,
|
|
START: 2,
|
|
LOADING: 3,
|
|
CREATING: 4,
|
|
RUNNING: 5,
|
|
PAUSED: 6,
|
|
SLEEPING: 7,
|
|
SHUTDOWN: 8,
|
|
DESTROYED: 9
|
|
|
|
};
|