Click or drag to resize

GameInfoLoad Method (String)

Loads the game info from the specified file

Namespace:  Zyrenth.Zora
Assembly:  ZoraSharp (in ZoraSharp.dll) Version: 2.3
Syntax
public static GameInfo Load(
	string filename
)

Parameters

filename
Type: SystemString
The file name of the saved GameInfo

Return Value

Type: GameInfo
A GameInfo
Examples
C#
string file = @"C:\Users\Link\Documents\my_game.zora";
GameInfo info = GameInfo.Load(file);
See Also