idTech4.Renderer.idRenderModel_Static.GetSurface C# (CSharp) Method

GetSurface() public method

public GetSurface ( int index ) : RenderModelSurface
index int
return RenderModelSurface
		public override RenderModelSurface GetSurface(int index)
		{
			if(this.Disposed == true)
			{
				throw new ObjectDisposedException(this.GetType().Name);
			}

			return _surfaces[index];
		}