Click or drag to resize

GameSecretUpdateGameInfo Method

Updates the game information.

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public void UpdateGameInfo(
	GameInfo info
)

Parameters

info
Type: Zyrenth.ZoraGameInfo
The information.
Examples
C#
GameSecret secret = new GameSecret()
{
    Region = GameRegion.US,
    TargetGame = Game.Ages,
    GameID = 14129,
    Hero = "Link",
    Child = "Pip",
    Animal = Animal.Dimitri,
    Behavior = ChildBehavior.BouncyD,
    IsLinkedGame = true,
    IsHeroQuest = false,
    WasGivenFreeRing = true
};
GameInfo info = new GameInfo();
secret.UpdateGameInfo(info);
See Also