Ejemplo n.º 1
0
        public Dictionary <String, int> DumpAssetReferenceCount()
        {
            Dictionary <String, int> refs = new Dictionary <string, int>();

            foreach (var item in externalContentManager.GetLoadedAssetNames())
            {
                refs.Add(item, externalContentManager.GetReferenceCount(item));
            }
            return(refs);
        }