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