MemorySecretLoad Method (GameInfo) |
Loads in data from the specified game info
Namespace:
Zyrenth.Zora
Assembly:
ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic override void Load(
GameInfo info
)
Public Overrides Sub Load (
info As GameInfo
)
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.
ExamplesGameInfo info = new GameInfo()
{
Region = GameRegion.US,
Game = Game.Ages,
GameID = 14129
};
MemorySecret secret = new MemorySecret();
secret.Load(info);
See Also