Show / Hide Table of Contents

Interface EAZGamePreparationDelegate

Game Preparation Manager Delegate

Namespace: EazeGamesSDK
Assembly: EazeGamesSDK.dll
Syntax
public interface EAZGamePreparationDelegate

Methods

provideGameControllerWithStartGameInfo(EAZGameStartInfo)

Will be called when it's time to start the game with the given EAZGameStartInfo.

Declaration
void provideGameControllerWithStartGameInfo(EAZGameStartInfo startGameInfo)
Parameters
Type Name Description
EAZGameStartInfo startGameInfo

Model that contains information about game.

startLoadingGameResourcesFor(String)

Starting point of the game sequence. When this callback is trigerred it's necessary to load any resources needed for game. In order to finish preparation it is necessary to call gameDidLoad() of the IEAZGamePreparationManager.

Declaration
void startLoadingGameResourcesFor(string gameId)
Parameters
Type Name Description
System.String gameId

Game identifier.

Back to top Generated by DocFX