Fusion.Hud.Clear C# (CSharp) Method

Clear() static public method

Clears all lines added from current thread.
static public Clear ( System.Guid category ) : void
category System.Guid
return void
		static public void Clear ( Guid category )
		{
			lock (lockObj) {
				lines.RemoveAll( line => line.Category == category );
			}
		}