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.