namespace GFGGame { public class EquipDataCache { private static DressUpObjDataCache _cacher; public static DressUpObjDataCache cacher { get { if(_cacher == null) { _cacher = new DressUpObjDataCache(); } return _cacher; } } } }