We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad4f102 commit e206885Copy full SHA for e206885
1 file changed
v3/src/cache/GlobalCache.js
@@ -11,16 +11,16 @@ var GlobalCache = new Class({
11
{
12
this.game = game;
13
14
- this.sound = new BaseCache();
15
- this.video = new BaseCache();
16
- this.text = new BaseCache();
17
- this.json = new BaseCache();
18
- this.xml = new BaseCache();
19
- this.physics = new BaseCache();
20
- this.tilemap = new BaseCache();
21
this.binary = new BaseCache();
22
this.bitmapFont = new BaseCache();
+ this.json = new BaseCache();
+ this.physics = new BaseCache();
23
this.shader = new BaseCache();
+ this.sound = new BaseCache();
+ this.text = new BaseCache();
+ this.tilemap = new BaseCache();
+ this.video = new BaseCache();
+ this.xml = new BaseCache();
24
25
this.custom = {};
26
},
0 commit comments