C# Class AlbLib.SaveGame.SaveGameInfo

Afficher le fichier Open project: IllidanS4/AlbLib

Méthodes publiques

Méthode Description
SaveGameInfo ( Stream stream ) : System

Loads saved game from specified stream.

SaveGameInfo ( string path ) : System

Loads saved game from specified file.

ToRawData ( ) : byte[]

Converts saved game header to byte array.

Write ( Stream output ) : void

Writes saved game header to a stream.

Method Details

SaveGameInfo() public méthode

Loads saved game from specified stream.
public SaveGameInfo ( Stream stream ) : System
stream Stream /// Input stream. ///
Résultat System

SaveGameInfo() public méthode

Loads saved game from specified file.
public SaveGameInfo ( string path ) : System
path string /// File where saved game is stored. ///
Résultat System

ToRawData() public méthode

Converts saved game header to byte array.
public ToRawData ( ) : byte[]
Résultat byte[]

Write() public méthode

Writes saved game header to a stream.
public Write ( Stream output ) : void
output Stream /// Output stream. ///
Résultat void