Click or drag to resize

GameSecretLoad Method (GameInfo)

Loads in data from the specified game info

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

Parameters

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