Axiom.Core.Root.GetMovableObjectFactory C# (CSharp) Метод

GetMovableObjectFactory() публичный Метод

Get a MovableObjectFactory for the given type.
public GetMovableObjectFactory ( string typeName ) : MovableObjectFactory
typeName string /// The factory type to obtain. ///
Результат MovableObjectFactory
		public MovableObjectFactory GetMovableObjectFactory( string typeName )
		{
			if ( !this.movableObjectFactoryMap.ContainsKey( typeName ) )
			{
				throw new AxiomException( "MovableObjectFactory for type " + typeName + " does not exist." );
			}

			return this.movableObjectFactoryMap[ typeName ];
		}