Interface IGameResultsPresenter
Presenter port for the game results screen.
Namespace: Serenity.GameUi.Application.Interfaces.Presenters
Assembly: Serenity.GameUi.Application.dll
Syntax
public interface IGameResultsPresenter
Remarks
Implementations react to results state changes and drive a concrete UI. The business layer calls these methods; the infrastructure decides how to render.
Methods
HideResults()
Hides the results screen.
Declaration
void HideResults()
ShowResults(ResultsState)
Shows the results screen with the given state.
Declaration
void ShowResults(ResultsState state)
Parameters
| Type | Name | Description |
|---|---|---|
| ResultsState | state | The results state to present. |