Struct TablistDialogResponse
Represents a response to a TablistDialog.
public struct TablistDialogResponse
- Inherited Members
Constructors
TablistDialogResponse(DialogResponse, int, TablistDialogRow?)
Initializes a new instance of the MessageDialogResponse struct.
public TablistDialogResponse(DialogResponse response, int itemIndex, TablistDialogRow? item)
Parameters
responseDialogResponseThe way in which the player has responded to the dialog.
itemIndexintThe index of the item the player selected in the dialog.
itemTablistDialogRowThe item the player selected in the dialog.
Properties
Item
Gets the item the player selected in the dialog.
public readonly TablistDialogRow? Item { get; }
Property Value
ItemIndex
Gets the index of the item the player selected in the dialog.
public readonly int ItemIndex { get; }
Property Value
Response
Gets the way in which the player has responded to the dialog.
public readonly DialogResponse Response { get; }