Table of Contents

Class DecisionOptionInfo

Namespace
SuzerainModdingKit.StoryFragments.Decision
Assembly
SuzerainModdingKit.dll

Read-only representation of an option in a decision.

public class DecisionOptionInfo
Inheritance
DecisionOptionInfo
Inherited Members

Constructors

DecisionOptionInfo(string, string)

Creates a new instance of this object.

public DecisionOptionInfo(string text, string decisionName)

Parameters

text string

The text of the option.

decisionName string

The name of the decision that this option belongs to.

Exceptions

ArgumentNullException

Thrown if any required arguments are null.

Properties

DecisionName

The name of the decision that this option belongs to.

public string DecisionName { get; }

Property Value

string

Text

The text of the option.

public string Text { get; }

Property Value

string

See Also