Axiom.Core.ResourceManager.ReloadAll C# (CSharp) Méthode

ReloadAll() public méthode

Causes all currently loaded resources to be reloaded.
Unloaded resources are not removed, they simply free up their memory as much as they can and wait to be reloaded. ResourceGroupManager for unloading of resource groups.
public ReloadAll ( ) : void
Résultat void
		public virtual void ReloadAll()
		{
			foreach ( Resource res in _resources.Values )
			{
				res.Reload();
			}
		}