Interface IDropNpcRecord

Unit

Declaration

type IDropNpcRecord = interface(IInterface)

Description

Record of potential drops from an NPC

Attributes
GUID['{4F99581D-A2E4-5952-A682-B2460A6BF3EA}']

Hierarchy

Overview

Methods

Public function GetByteSize: Cardinal;
Public function GetNpcId: Cardinal;
Public procedure SetNpcId(NpcId: Cardinal);
Public function GetDrops: TArray<IDropRecord>;
Public procedure SetDrops(Drops: TArray<IDropRecord>);
Public procedure Serialize(Writer: TEoWriter);

Properties

Public property ByteSize: Cardinal read GetByteSize;
Public property NpcId: Cardinal read GetNpcId write SetNpcId;
Public property Drops: TArray<IDropRecord> read GetDrops write SetDrops;

Description

Methods

Public function GetByteSize: Cardinal;

This item has no description.

Public function GetNpcId: Cardinal;

This item has no description.

Public procedure SetNpcId(NpcId: Cardinal);

This item has no description.

Public function GetDrops: TArray<IDropRecord>;

This item has no description.

Public procedure SetDrops(Drops: TArray<IDropRecord>);

This item has no description.

Public procedure Serialize(Writer: TEoWriter);

Serializes this IDropNpcRecord 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 NpcId: Cardinal read GetNpcId write SetNpcId;

Note
Value range is 0-64008

Public property Drops: TArray<IDropRecord> read GetDrops write SetDrops;

Note
Length must be 64008 or less


Generated by PasDoc 0.16.0-snapshot.