idTech4.Renderer.MaterialInfoParameter.MaterialInfoParameter C# (CSharp) Method

MaterialInfoParameter() public method

public MaterialInfoParameter ( string name, bool clearSolid, SurfaceFlags surfaceFlags, ContentFlags contentFlags ) : System
name string
clearSolid bool
surfaceFlags SurfaceFlags
contentFlags ContentFlags
return System
		public MaterialInfoParameter(string name, bool clearSolid, SurfaceFlags surfaceFlags, ContentFlags contentFlags)
		{
			Name = name;
			ClearSolid = clearSolid;
			SurfaceFlags = surfaceFlags;
			ContentFlags = contentFlags;
		}
	}
MaterialInfoParameter