Click or drag to resize

SecretLoad Method (String, GameRegion)

Loads in data from the secret string provided

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public virtual void Load(
	string secret,
	GameRegion region
)

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.
C#
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