XCom.Type0Descriptor.ParseLine C# (CSharp) Method

ParseLine() protected method

protected ParseLine ( string keyword, string rest, StreamReader sr, VarCollection vars ) : void
keyword string
rest string
sr System.IO.StreamReader
vars VarCollection
return void
		protected override void ParseLine(string keyword, string rest,StreamReader sr, VarCollection vars)
		{
			switch(keyword)
			{
				case "yoffset":
					offset = int.Parse(rest);
					break;
			}
		}