mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 06:30:38 +00:00
Alphabetical order
This commit is contained in:
parent
ad4f102335
commit
e206885be0
1 changed files with 7 additions and 7 deletions
14
v3/src/cache/GlobalCache.js
vendored
14
v3/src/cache/GlobalCache.js
vendored
|
@ -11,16 +11,16 @@ var GlobalCache = new Class({
|
||||||
{
|
{
|
||||||
this.game = game;
|
this.game = game;
|
||||||
|
|
||||||
this.sound = new BaseCache();
|
|
||||||
this.video = new BaseCache();
|
|
||||||
this.text = new BaseCache();
|
|
||||||
this.json = new BaseCache();
|
|
||||||
this.xml = new BaseCache();
|
|
||||||
this.physics = new BaseCache();
|
|
||||||
this.tilemap = new BaseCache();
|
|
||||||
this.binary = new BaseCache();
|
this.binary = new BaseCache();
|
||||||
this.bitmapFont = new BaseCache();
|
this.bitmapFont = new BaseCache();
|
||||||
|
this.json = new BaseCache();
|
||||||
|
this.physics = new BaseCache();
|
||||||
this.shader = new BaseCache();
|
this.shader = new BaseCache();
|
||||||
|
this.sound = new BaseCache();
|
||||||
|
this.text = new BaseCache();
|
||||||
|
this.tilemap = new BaseCache();
|
||||||
|
this.video = new BaseCache();
|
||||||
|
this.xml = new BaseCache();
|
||||||
|
|
||||||
this.custom = {};
|
this.custom = {};
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue