Class TNearbyInfo

Unit

Declaration

type TNearbyInfo = class(TInterfacedObject, INearbyInfo)

Description

Information about nearby entities

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetCharacters: TArray<ICharacterMapInfo>;
Public procedure SetCharacters(Characters: TArray<ICharacterMapInfo>);
Public function GetNpcs: TArray<INpcMapInfo>;
Public procedure SetNpcs(Npcs: TArray<INpcMapInfo>);
Public function GetItems: TArray<IItemMapInfo>;
Public procedure SetItems(Items: TArray<IItemMapInfo>);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TNearbyInfo;

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property Characters: TArray<ICharacterMapInfo> read GetCharacters write SetCharacters;
Public property Npcs: TArray<INpcMapInfo> read GetNpcs write SetNpcs;
Public property Items: TArray<IItemMapInfo> read GetItems write SetItems;

Description

Methods

Public function GetByteSize: Cardinal;

This item has no description.

Public function GetCharacters: TArray<ICharacterMapInfo>;

This item has no description.

Public procedure SetCharacters(Characters: TArray<ICharacterMapInfo>);

This item has no description.

Public function GetNpcs: TArray<INpcMapInfo>;

This item has no description.

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

This item has no description.

Public function GetItems: TArray<IItemMapInfo>;

This item has no description.

Public procedure SetItems(Items: TArray<IItemMapInfo>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TNearbyInfo object to the provided TEoWriter.

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

Deserializes an instance of TNearbyInfo 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 Characters: TArray<ICharacterMapInfo> read GetCharacters write SetCharacters;

Note
Length must be 252 or less

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

This item has no description.

Public property Items: TArray<IItemMapInfo> read GetItems write SetItems;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.