Class TCharacterStatsUpdate

Unit

Declaration

type TCharacterStatsUpdate = class(TInterfacedObject, ICharacterStatsUpdate)

Description

Character stats data. Sent when stats are updated.

Hierarchy

Overview

Methods

Public function _GetByteSize: Cardinal;
Public function _GetBaseStats: ICharacterBaseStats;
Public procedure _SetBaseStats(BaseStats: ICharacterBaseStats);
Public function _GetMaxHp: Cardinal;
Public procedure _SetMaxHp(MaxHp: Cardinal);
Public function _GetMaxTp: Cardinal;
Public procedure _SetMaxTp(MaxTp: Cardinal);
Public function _GetMaxSp: Cardinal;
Public procedure _SetMaxSp(MaxSp: Cardinal);
Public function _GetMaxWeight: Cardinal;
Public procedure _SetMaxWeight(MaxWeight: Cardinal);
Public function _GetSecondaryStats: ICharacterSecondaryStats;
Public procedure _SetSecondaryStats(SecondaryStats: ICharacterSecondaryStats);
Public procedure Serialize(Writer: TEoWriter);
Public class function Deserialize(Reader: TEoReader): TCharacterStatsUpdate;

Properties

Public property ByteSize: Cardinal read _GetByteSize;
Public property BaseStats: ICharacterBaseStats read _GetBaseStats write _SetBaseStats;
Public property MaxHp: Cardinal read _GetMaxHp write _SetMaxHp;
Public property MaxTp: Cardinal read _GetMaxTp write _SetMaxTp;
Public property MaxSp: Cardinal read _GetMaxSp write _SetMaxSp;
Public property MaxWeight: Cardinal read _GetMaxWeight write _SetMaxWeight;
Public property SecondaryStats: ICharacterSecondaryStats read _GetSecondaryStats write _SetSecondaryStats;

Description

Methods

Public function _GetByteSize: 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 _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 _GetMaxSp: Cardinal;

This item has no description.

Public procedure _SetMaxSp(MaxSp: Cardinal);

This item has no description.

Public function _GetMaxWeight: Cardinal;

This item has no description.

Public procedure _SetMaxWeight(MaxWeight: Cardinal);

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 TCharacterStatsUpdate object to the provided TEoWriter.

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

Deserializes an instance of TCharacterStatsUpdate 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 BaseStats: ICharacterBaseStats read _GetBaseStats write _SetBaseStats;

This item has no description.

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 MaxSp: Cardinal read _GetMaxSp write _SetMaxSp;

Note
Value range is 0-64008

Public property MaxWeight: Cardinal read _GetMaxWeight write _SetMaxWeight;

Note
Value range is 0-64008

Public property SecondaryStats: ICharacterSecondaryStats read _GetSecondaryStats write _SetSecondaryStats;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.