Interface ICharacterStatsEquipmentChange

Unit

Declaration

type ICharacterStatsEquipmentChange = interface(IInterface)

Description

Character stats data. Sent when an item is equipped or unequipped.

Attributes
GUID['{D4977A22-08BC-5AE7-8467-97A844DB0A79}']

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetMaxHp: Cardinal;
Public procedure SetMaxHp(MaxHp: Cardinal);
Public function GetMaxTp: Cardinal;
Public procedure SetMaxTp(MaxTp: Cardinal);
Public function GetBaseStats: ICharacterBaseStats;
Public procedure SetBaseStats(BaseStats: ICharacterBaseStats);
Public function GetSecondaryStats: ICharacterSecondaryStats;
Public procedure SetSecondaryStats(SecondaryStats: ICharacterSecondaryStats);
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property MaxHp: Cardinal read GetMaxHp write SetMaxHp;
Public property MaxTp: Cardinal read GetMaxTp write SetMaxTp;
Public property BaseStats: ICharacterBaseStats read GetBaseStats write SetBaseStats;
Public property SecondaryStats: ICharacterSecondaryStats read GetSecondaryStats write SetSecondaryStats;

Description

Methods

Public function GetByteSize: Cardinal;

This item has no description.

Public function GetMaxHp: Cardinal;

This item has no description.

Public procedure SetMaxHp(MaxHp: Cardinal);

This item has no description.

Public function GetMaxTp: Cardinal;

This item has no description.

Public procedure SetMaxTp(MaxTp: Cardinal);

This item has no description.

Public function GetBaseStats: ICharacterBaseStats;

This item has no description.

Public procedure SetBaseStats(BaseStats: ICharacterBaseStats);

This item has no description.

Public function GetSecondaryStats: ICharacterSecondaryStats;

This item has no description.

Public procedure SetSecondaryStats(SecondaryStats: ICharacterSecondaryStats);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this ICharacterStatsEquipmentChange object to the provided TEoWriter.

Parameters
Writer
The writer that this object will be serialized to

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 MaxHp: Cardinal read GetMaxHp write SetMaxHp;

Note
Value range is 0-64008

Public property MaxTp: Cardinal read GetMaxTp write SetMaxTp;

Note
Value range is 0-64008

Public property BaseStats: ICharacterBaseStats read GetBaseStats write SetBaseStats;

This item has no description.

Public property SecondaryStats: ICharacterSecondaryStats read GetSecondaryStats write SetSecondaryStats;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.