Click or drag to resize

MemorySecretLoad 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
Remarks
Because GameInfo does not contain information about memories, only the properties TargetGame and GameID will be populated by this method.
Examples
C#
GameInfo info = new GameInfo()
{
    Region = GameRegion.US,
    Game = Game.Ages,
    GameID = 14129
};
MemorySecret secret = new MemorySecret();
secret.Load(info);
See Also