Alphabetical order

This commit is contained in:
Richard Davey 2017-08-10 05:17:13 +01:00
parent ad4f102335
commit e206885be0

View file

@ -11,16 +11,16 @@ var GlobalCache = new Class({
{
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.bitmapFont = new BaseCache();
this.json = new BaseCache();
this.physics = 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 = {};
},