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

Create() public method

Creates a new blank resource, but does not immediately load it.
Resource managers handle disparate types of resources. This method returns a pointer to a valid new instance of the kind of resource managed here. The caller should complete the details of the returned resource and call ResourceManager.Load to load the resource. Note that it is the CALLERS responsibility to destroy this object when it is no longer required (after calling ResourceManager.Unload if it had been loaded). If you want to get at the detailed interface of this resource, you'll have to cast the result to the subclass you know you're creating.
public Create ( string name, string group ) : Axiom.Core.Resource
name string The unique name of the resource
group string
return Axiom.Core.Resource
		public Resource Create( string name, string group )
		{
			return Create( name, group, null );
		}

Same methods

ResourceManager::Create ( string name, string group, NameValuePairList createParams ) : Axiom.Core.Resource
ResourceManager::Create ( string name, string group, bool isManual, IManualResourceLoader loader, NameValuePairList createParams ) : Axiom.Core.Resource