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

UnloadAll() public method

Unloads all resources.
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 UnloadAll ( ) : void
return void
		public virtual void UnloadAll()
		{
			foreach ( Resource res in _resources.Values )
			{
				res.Unload();
			}
		}