Class TEquipmentMapInfo

Unit

Declaration

type TEquipmentMapInfo = class(TInterfacedObject, IEquipmentMapInfo)

Description

Player equipment data. Sent with map information about a nearby character. Note that these values are graphic IDs.

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetBoots: Cardinal;
Public procedure _SetBoots(Boots: Cardinal);
Public function _GetArmor: Cardinal;
Public procedure _SetArmor(Armor: Cardinal);
Public function _GetHat: Cardinal;
Public procedure _SetHat(Hat: Cardinal);
Public function _GetShield: Cardinal;
Public procedure _SetShield(Shield: Cardinal);
Public function _GetWeapon: Cardinal;
Public procedure _SetWeapon(Weapon: Cardinal);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TEquipmentMapInfo;

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property Boots: Cardinal read _GetBoots write _SetBoots;
Public property Armor: Cardinal read _GetArmor write _SetArmor;
Public property Hat: Cardinal read _GetHat write _SetHat;
Public property Shield: Cardinal read _GetShield write _SetShield;
Public property Weapon: Cardinal read _GetWeapon write _SetWeapon;

Description

Methods

Public function _GetByteSize: Cardinal;

This item has no description.

Public function _GetBoots: Cardinal;

This item has no description.

Public procedure _SetBoots(Boots: Cardinal);

This item has no description.

Public function _GetArmor: Cardinal;

This item has no description.

Public procedure _SetArmor(Armor: Cardinal);

This item has no description.

Public function _GetHat: Cardinal;

This item has no description.

Public procedure _SetHat(Hat: Cardinal);

This item has no description.

Public function _GetShield: Cardinal;

This item has no description.

Public procedure _SetShield(Shield: Cardinal);

This item has no description.

Public function _GetWeapon: Cardinal;

This item has no description.

Public procedure _SetWeapon(Weapon: Cardinal);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this TEquipmentMapInfo object to the provided TEoWriter.

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

Deserializes an instance of TEquipmentMapInfo 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 Boots: Cardinal read _GetBoots write _SetBoots;

Note
Value range is 0-64008

Public property Armor: Cardinal read _GetArmor write _SetArmor;

Note
Value range is 0-64008

Public property Hat: Cardinal read _GetHat write _SetHat;

Note
Value range is 0-64008

Public property Shield: Cardinal read _GetShield write _SetShield;

Note
Value range is 0-64008

Public property Weapon: Cardinal read _GetWeapon write _SetWeapon;

Note
Value range is 0-64008


Generated by PasDoc 0.16.0-snapshot.