Nexus.Client.Games.Gamebryo.Tools.TESsnip.GroupRecord.GroupRecord C# (CSharp) Method

GroupRecord() public method

A simple constructor that initializes the object with the given data.
public GroupRecord ( string data ) : System
data string The group record data.
return System
		public GroupRecord(string data)
		{
			Name = "GRUP";
			this.data = new byte[4];
			for (int i = 0; i < 4; i++) this.data[i] = (byte)data[i];
			descriptiveName = " (" + data + ")";
		}

Same methods

GroupRecord::GroupRecord ( GroupRecord gr ) : System
GroupRecord::GroupRecord ( uint Size, BinaryReader br, bool Oblivion ) : System