GameInfoLoad Method (String) |
Loads the game info from the specified file
Namespace:
Zyrenth.Zora
Assembly:
ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntaxpublic static GameInfo Load(
string filename
)
Public Shared Function Load (
filename As String
) As GameInfo
Parameters
- filename
- Type: SystemString
The file name of the saved GameInfo
Return Value
Type:
GameInfoA GameInfo
Examplesstring file = @"C:\Users\Link\Documents\my_game.zora";
GameInfo info = GameInfo.Load(file);
See Also