C# Class Warcraft.DBC.Definitions.UnknownRecord

Unknown record. This class serves as a general-purpose container for unimplemented records, and simplifies inspection of those records.
Inheritance: DBCRecord
Mostra file Open project: Nihlus/libwarcraft

Public Properties

Property Type Description
RecordData byte[]

Public Methods

Method Description
GetFieldCount ( ) : int

Gets the field count for this record at.

GetRecordSize ( ) : int

Gets the size of the record.

LoadData ( byte data ) : void

Loads and parses the provided data.

UnknownRecord ( ) : System

Method Details

GetFieldCount() public method

Gets the field count for this record at.
public GetFieldCount ( ) : int
return int

GetRecordSize() public method

Gets the size of the record.
public GetRecordSize ( ) : int
return int

LoadData() public method

Loads and parses the provided data.
public LoadData ( byte data ) : void
data byte Data.
return void

UnknownRecord() public method

public UnknownRecord ( ) : System
return System

Property Details

RecordData public_oe property

The record data, stored as raw bytes.
public byte[] RecordData
return byte[]