Interface ISectionDependingOnUserChoices
For sections that depend on what the user selected in either the game specs or the package selection.
Inherited Members
Namespace: Unity.Multiplayer.Center.Common
Assembly: Unity.Multiplayer.Center.Common.dll
Syntax
public interface ISectionDependingOnUserChoices : IOnboardingSection
Methods
HandleAnswerData(AnswerData)
Receives the answer data and handles it. This is called after Load.
Declaration
void HandleAnswerData(AnswerData answerData)
Parameters
Type | Name | Description |
---|---|---|
Answer |
answerData | The latest value of answerData |
HandlePreset(Preset)
Receives the preset data and handles it. This is called after Load.
Declaration
void HandlePreset(Preset preset)
Parameters
Type | Name | Description |
---|---|---|
Preset | preset | The latest preset value |
HandleUserSelectionData(SelectedSolutionsData)
Receives the user selection data and handles it. This is called after Load.
Declaration
void HandleUserSelectionData(SelectedSolutionsData selectedSolutionsData)
Parameters
Type | Name | Description |
---|---|---|
Selected |
selectedSolutionsData | The latest value of the selection |