SecretLoad Method (String, GameRegion) |
Loads in data from the secret string provided
Namespace:
Zyrenth.Zora
Assembly:
ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic virtual void Load(
string secret,
GameRegion region
)
Public Overridable Sub Load (
secret As String,
region As GameRegion
)
Parameters
- secret
- Type: SystemString
The secret - region
- Type: Zyrenth.ZoraGameRegion
The region of the game
Examples
This example demonstrates loading a
GameSecret from a
secret string.
string gameSecret = "H~2:@ left 2 diamond yq GB3 circle ( 6 heart ? up 6";
Secret secret = new GameSecret();
secret.Load(gameSecret, GameRegion.US);
See Also