Click or drag to resize

RingSecretLoad 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
Examples
C#
GameInfo info = new GameInfo()
{
    GameID = 14129,
    Rings = Rings.PowerRingL1 | Rings.DoubleEdgeRing | Rings.ProtectionRing
};
RingSecret secret = new RingSecret();
secret.Load(info);
See Also