Axiom.Core.ResourceManager.ReloadAll C# (CSharp) Method

ReloadAll() public method

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
return void
		public virtual void ReloadAll()
		{
			foreach ( Resource res in _resources.Values )
			{
				res.Reload();
			}
		}