MemorySecretLoad Method (Byte, GameRegion) |
Loads in data from the raw secret data provided
Namespace:
Zyrenth.Zora
Assembly:
ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic override void Load(
byte[] secret,
GameRegion region
)
Public Overrides Sub Load (
secret As Byte(),
region As GameRegion
)
Parameters
- secret
- Type: SystemByte
The raw secret data - region
- Type: Zyrenth.ZoraGameRegion
The region of the game
Examples
This example demonstrates loading a
MemorySecret from a
a byte array containing an encoded secret.
byte[] rawSecret = new byte[]
{
55, 21, 41, 18, 59
};
Secret secret = new MemorySecret();
secret.Load(rawSecret, GameRegion.US);
See Also