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