Class TEnf

Unit

Declaration

type TEnf = class(TInterfacedObject, IEnf)

Description

Endless NPC File

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetRid: TArray<Cardinal>;
Public procedure SetRid(Rid: TArray<Cardinal>);
Public function GetTotalNpcsCount: Cardinal;
Public procedure SetTotalNpcsCount(TotalNpcsCount: Cardinal);
Public function GetVersion: Cardinal;
Public procedure SetVersion(Version: Cardinal);
Public function GetNpcs: TArray<IEnfRecord>;
Public procedure SetNpcs(Npcs: TArray<IEnfRecord>);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TEnf;

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property Rid: TArray<Cardinal> read GetRid write SetRid;
Public property TotalNpcsCount: Cardinal read GetTotalNpcsCount write SetTotalNpcsCount;
Public property Version: Cardinal read GetVersion write SetVersion;
Public property Npcs: TArray<IEnfRecord> read GetNpcs write SetNpcs;

Description

Methods

Public function GetByteSize: Cardinal;

This item has no description.

Public function GetRid: TArray<Cardinal>;

This item has no description.

Public procedure SetRid(Rid: TArray<Cardinal>);

This item has no description.

Public function GetTotalNpcsCount: Cardinal;

This item has no description.

Public procedure SetTotalNpcsCount(TotalNpcsCount: Cardinal);

This item has no description.

Public function GetVersion: Cardinal;

This item has no description.

Public procedure SetVersion(Version: Cardinal);

This item has no description.

Public function GetNpcs: TArray<IEnfRecord>;

This item has no description.

Public procedure SetNpcs(Npcs: TArray<IEnfRecord>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TEnf object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to
Public class function Deserialize(Reader: TEoReader): TEnf;

Deserializes an instance of TEnf from the provided TEoReader.

Parameters
Reader
The reader that the object will be deserialized from
Returns

The deserialized object

Properties

Public property ByteSize: Cardinal read GetByteSize;

The size of the data that this object was deserialized from.

Note
0 if the instance was not created by the Deserialize method.

Public property Rid: TArray<Cardinal> read GetRid write SetRid;

Note

  • Length must be 2

  • Element value range is 0-64008

Public property TotalNpcsCount: Cardinal read GetTotalNpcsCount write SetTotalNpcsCount;

Note
Value range is 0-64008

Public property Version: Cardinal read GetVersion write SetVersion;

Note
Value range is 0-252

Public property Npcs: TArray<IEnfRecord> read GetNpcs write SetNpcs;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.